From: Zachary Turner Date: Tue, 5 Dec 2017 23:19:33 +0000 (+0000) Subject: Fix -Wmissing-braces error. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0b3e8d4de32497018fd24aa2c0fea1fef6aafaab;p=llvm Fix -Wmissing-braces error. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@319855 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/DebugInfo/CodeView/TypeHashing.cpp b/lib/DebugInfo/CodeView/TypeHashing.cpp index f9ab0f3b339..57570917e1d 100644 --- a/lib/DebugInfo/CodeView/TypeHashing.cpp +++ b/lib/DebugInfo/CodeView/TypeHashing.cpp @@ -20,8 +20,8 @@ LocallyHashedType DenseMapInfo::Tombstone{hash_code(-1), {}}; static std::array EmptyHash; static std::array 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::Empty{EmptyHash}; GloballyHashedType DenseMapInfo::Tombstone{TombstoneHash};