diff options
author | Zachary Turner <zturner@google.com> | 2017-11-29 00:13:44 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2017-11-29 00:13:44 +0000 |
commit | f125f8f5d19b1082ec84089c84bab0d6c141f92a (patch) | |
tree | abbef3f532864e69572beed113fe119f549e0b94 /lib/DebugInfo | |
parent | 4418c09eb31b21301de64ab1982f2db2b464bac5 (diff) |
Fix a warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@319263 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/DebugInfo')
-rw-r--r-- | lib/DebugInfo/CodeView/TypeTableBuilder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/DebugInfo/CodeView/TypeTableBuilder.cpp b/lib/DebugInfo/CodeView/TypeTableBuilder.cpp index 7b02b175bd6..289bf6ca93c 100644 --- a/lib/DebugInfo/CodeView/TypeTableBuilder.cpp +++ b/lib/DebugInfo/CodeView/TypeTableBuilder.cpp @@ -31,7 +31,7 @@ using namespace llvm::codeview; namespace { struct HashedType { - unsigned Hash; + hash_code Hash; ArrayRef<uint8_t> Data; TypeIndex Index; }; |