[llvm] r319263 - Fix a warning.
Zachary Turner via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 28 16:13:44 PST 2017
Author: zturner
Date: Tue Nov 28 16:13:44 2017
New Revision: 319263
URL: http://llvm.org/viewvc/llvm-project?rev=319263&view=rev
Log:
Fix a warning.
Modified:
llvm/trunk/lib/DebugInfo/CodeView/TypeTableBuilder.cpp
Modified: llvm/trunk/lib/DebugInfo/CodeView/TypeTableBuilder.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/DebugInfo/CodeView/TypeTableBuilder.cpp?rev=319263&r1=319262&r2=319263&view=diff
==============================================================================
--- llvm/trunk/lib/DebugInfo/CodeView/TypeTableBuilder.cpp (original)
+++ llvm/trunk/lib/DebugInfo/CodeView/TypeTableBuilder.cpp Tue Nov 28 16:13:44 2017
@@ -31,7 +31,7 @@ using namespace llvm::codeview;
namespace {
struct HashedType {
- unsigned Hash;
+ hash_code Hash;
ArrayRef<uint8_t> Data;
TypeIndex Index;
};
More information about the llvm-commits
mailing list