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 | 4c1fa685908b90bdde7b2d681b6f0e4dca600d13 (patch) | |
tree | e21f17130f7616b6a9cdc4c8c05de5f03d290680 | |
parent | 90e8c122eee910143cd01c69401e5d084425fda1 (diff) | |
download | bcm5719-llvm-4c1fa685908b90bdde7b2d681b6f0e4dca600d13.tar.gz bcm5719-llvm-4c1fa685908b90bdde7b2d681b6f0e4dca600d13.zip |
Fix a warning.
llvm-svn: 319263
-rw-r--r-- | llvm/lib/DebugInfo/CodeView/TypeTableBuilder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/DebugInfo/CodeView/TypeTableBuilder.cpp b/llvm/lib/DebugInfo/CodeView/TypeTableBuilder.cpp index 7b02b175bd6..289bf6ca93c 100644 --- a/llvm/lib/DebugInfo/CodeView/TypeTableBuilder.cpp +++ b/llvm/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; }; |