diff options
Diffstat (limited to 'llvm/include/llvm/DebugInfo/PDB/Raw/Hash.h')
-rw-r--r-- | llvm/include/llvm/DebugInfo/PDB/Raw/Hash.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/include/llvm/DebugInfo/PDB/Raw/Hash.h b/llvm/include/llvm/DebugInfo/PDB/Raw/Hash.h index 8b822147e59..0340554d7b0 100644 --- a/llvm/include/llvm/DebugInfo/PDB/Raw/Hash.h +++ b/llvm/include/llvm/DebugInfo/PDB/Raw/Hash.h @@ -10,6 +10,7 @@ #ifndef LLVM_DEBUGINFO_PDB_RAW_HASH_H #define LLVM_DEBUGINFO_PDB_RAW_HASH_H +#include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/StringRef.h" #include <stdint.h> @@ -17,6 +18,7 @@ namespace llvm { namespace pdb { uint32_t hashStringV1(StringRef Str); uint32_t hashStringV2(StringRef Str); +uint32_t hashBufferV8(ArrayRef<uint8_t> Data); } } |