зеркало из https://github.com/microsoft/clang.git
add missing specification for a default argument. I guess g++ 4.0 doesn't
notice this. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@39776 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
1978596a6f
Коммит
3724c00ab7
|
@ -212,7 +212,7 @@ public:
|
|||
None, Extern, Static
|
||||
};
|
||||
FunctionDecl(SourceLocation L, IdentifierInfo *Id, QualType T,
|
||||
StorageClass S = None, Decl *PrevDecl)
|
||||
StorageClass S = None, Decl *PrevDecl = 0)
|
||||
: ValueDecl(Function, L, Id, T, PrevDecl),
|
||||
ParamInfo(0), Body(0), DeclChain(0), SClass(S) {}
|
||||
virtual ~FunctionDecl();
|
||||
|
|
Загрузка…
Ссылка в новой задаче