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:
Chris Lattner 2007-07-12 15:26:16 +00:00
Родитель 1978596a6f
Коммит 3724c00ab7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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();