From 4d97203add074ca5c4dd4b93241e6ddf57b1ce02 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 llvm-svn: 203915 --- llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp') diff --git a/llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp b/llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp index ebd5bef377e..c3e570e14cc 100644 --- a/llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp +++ b/llvm/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