Why didn't gcc catch this? :(

llvm-svn: 41420
This commit is contained in:
Chris Lattner 2007-08-26 04:42:42 +00:00
parent 881440f5d2
commit 5e75e8bc71
1 changed files with 1 additions and 1 deletions

View File

@ -239,7 +239,7 @@ public:
None, Extern, Static
};
FunctionDecl(SourceLocation L, IdentifierInfo *Id, QualType T,
StorageClass S = None, bool isInline, Decl *PrevDecl = 0)
StorageClass S = None, bool isInline = false, Decl *PrevDecl = 0)
: ValueDecl(Function, L, Id, T, PrevDecl),
ParamInfo(0), Body(0), DeclChain(0), SClass(S), IsInline(isInline) {}
virtual ~FunctionDecl();