Initialize CurMethodDecl to 0.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@44463 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Anders Carlsson 2007-11-30 20:01:38 +00:00
Родитель 3907323dd6
Коммит 6c19a04a39
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -64,7 +64,7 @@ QualType Sema::GetObjcProtoType(SourceLocation Loc) {
}
Sema::Sema(Preprocessor &pp, ASTContext &ctxt)
: PP(pp), Context(ctxt), CurFunctionDecl(0) {
: PP(pp), Context(ctxt), CurFunctionDecl(0), CurMethodDecl(0) {
// Get IdentifierInfo objects for known functions for which we
// do extra checking.