diff options
author | Zachary Turner <zturner@google.com> | 2017-12-05 23:19:33 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2017-12-05 23:19:33 +0000 |
commit | 023f88ef4230643c0a71b555bce8943fc6010219 (patch) | |
tree | 2f13d7fa09f96d12165f9023281c447944ba3db9 /llvm/lib/DebugInfo/CodeView | |
parent | 87b78e9d1e3a50b1549bdb170d65106c9c0cfab3 (diff) | |
download | bcm5719-llvm-023f88ef4230643c0a71b555bce8943fc6010219.tar.gz bcm5719-llvm-023f88ef4230643c0a71b555bce8943fc6010219.zip |
Fix -Wmissing-braces error.
llvm-svn: 319855
Diffstat (limited to 'llvm/lib/DebugInfo/CodeView')
-rw-r--r-- | llvm/lib/DebugInfo/CodeView/TypeHashing.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/DebugInfo/CodeView/TypeHashing.cpp b/llvm/lib/DebugInfo/CodeView/TypeHashing.cpp index f9ab0f3b339..57570917e1d 100644 --- a/llvm/lib/DebugInfo/CodeView/TypeHashing.cpp +++ b/llvm/lib/DebugInfo/CodeView/TypeHashing.cpp @@ -20,8 +20,8 @@ LocallyHashedType DenseMapInfo<LocallyHashedType>::Tombstone{hash_code(-1), {}}; static std::array<uint8_t, 20> EmptyHash; static std::array<uint8_t, 20> TombstoneHash = { - 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; + {0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}}; GloballyHashedType DenseMapInfo<GloballyHashedType>::Empty{EmptyHash}; GloballyHashedType DenseMapInfo<GloballyHashedType>::Tombstone{TombstoneHash}; |