From 1dc8b1e22428ff2260bd3e706f097a89dfe6da40 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Wed, 9 Apr 2014 07:59:55 +0000 Subject: [PATCH] Sema::SectionInfo: Prune "default" for now. Defaulted function is unavailable on msc17. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@205840 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Sema/Sema.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/clang/Sema/Sema.h b/include/clang/Sema/Sema.h index ce83089322..357a6120f8 100644 --- a/include/clang/Sema/Sema.h +++ b/include/clang/Sema/Sema.h @@ -7089,7 +7089,7 @@ public: DeclaratorDecl *Decl; SourceLocation PragmaSectionLocation; int SectionFlags; - SectionInfo() = default; + SectionInfo(); SectionInfo(DeclaratorDecl *Decl, SourceLocation PragmaSectionLocation, int SectionFlags) -- 2.40.0