From 2d1415be5b2acaf302aecec8507b8be418756bfc Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Fri, 10 Feb 2017 00:02:09 +0000 Subject: [PATCH] Add an additional set of braces to deal with subobject initialization. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@294674 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp b/lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp index aa74ab0a5a5..4e27e13a379 100644 --- a/lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp +++ b/lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp @@ -328,7 +328,7 @@ PDB_SymType NativeRawSymbol::getSymTag() const { } PDB_UniqueId NativeRawSymbol::getGuid() const { - return {0}; + return {{0}}; } int32_t NativeRawSymbol::getOffset() const {