diff options
Diffstat (limited to 'include/llvm/Support/xxhash.h')
-rw-r--r-- | include/llvm/Support/xxhash.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/Support/xxhash.h b/include/llvm/Support/xxhash.h index f7ca460188a2..6fd67ff9ce1c 100644 --- a/include/llvm/Support/xxhash.h +++ b/include/llvm/Support/xxhash.h @@ -38,10 +38,12 @@ #ifndef LLVM_SUPPORT_XXHASH_H #define LLVM_SUPPORT_XXHASH_H +#include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/StringRef.h" namespace llvm { uint64_t xxHash64(llvm::StringRef Data); +uint64_t xxHash64(llvm::ArrayRef<uint8_t> Data); } #endif |