From 89ca7b3e36f29accbba44510503779af773ac9c9 Mon Sep 17 00:00:00 2001 From: Alexey Samsonov Date: Fri, 14 Mar 2014 10:37:36 +0000 Subject: Use ctor instead of initializer list to appease Windows buildbots git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203915 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/DebugInfo/DWARFAbbreviationDeclaration.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/DebugInfo/DWARFAbbreviationDeclaration.cpp') diff --git a/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp b/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp index ebd5bef377..c3e570e14c 100644 --- a/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp +++ b/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp @@ -51,7 +51,7 @@ DWARFAbbreviationDeclaration::extract(DataExtractor Data, uint32_t* OffsetPtr) { } if (Attr == 0 && Form == 0) break; - AttributeSpecs.push_back(AttributeSpec{Attr, Form}); + AttributeSpecs.push_back(AttributeSpec(Attr, Form)); } if (Tag == 0) { -- cgit v1.2.3