From: NAKAMURA Takumi Date: Wed, 9 Apr 2014 07:59:55 +0000 (+0000) Subject: Sema::SectionInfo: Prune "default" for now. Defaulted function is unavailable on... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1dc8b1e22428ff2260bd3e706f097a89dfe6da40;p=clang 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 --- 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)