summaryrefslogtreecommitdiff
path: root/include/llvm/Support/JamCRC.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Support/JamCRC.h')
-rw-r--r--include/llvm/Support/JamCRC.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Support/JamCRC.h b/include/llvm/Support/JamCRC.h
index 20c28a5f8e459..5268bbd9ba1ef 100644
--- a/include/llvm/Support/JamCRC.h
+++ b/include/llvm/Support/JamCRC.h
@@ -27,10 +27,11 @@
#ifndef LLVM_SUPPORT_JAMCRC_H
#define LLVM_SUPPORT_JAMCRC_H
-#include "llvm/ADT/ArrayRef.h"
#include "llvm/Support/DataTypes.h"
namespace llvm {
+template <typename T> class ArrayRef;
+
class JamCRC {
public:
JamCRC(uint32_t Init = 0xFFFFFFFFU) : CRC(Init) {}