From 9a44b5f5593bd8a385d06b07c564795f643ec8da Mon Sep 17 00:00:00 2001 From: Argyrios Kyrtzidis Date: Thu, 28 Oct 2010 09:29:35 +0000 Subject: [PATCH] Initialize the ASTMutationListener. Thanks goes to Abramo Bagnara! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@117541 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/AST/ASTContext.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/AST/ASTContext.cpp b/lib/AST/ASTContext.cpp index 23e07afcce..99023eeb7a 100644 --- a/lib/AST/ASTContext.cpp +++ b/lib/AST/ASTContext.cpp @@ -166,7 +166,7 @@ ASTContext::ASTContext(const LangOptions& LOpts, SourceManager &SM, Idents(idents), Selectors(sels), BuiltinInfo(builtins), DeclarationNames(*this), - ExternalSource(0), PrintingPolicy(LOpts), + ExternalSource(0), Listener(0), PrintingPolicy(LOpts), LastSDM(0, 0), UniqueBlockByRefTypeID(0), UniqueBlockParmTypeID(0) { ObjCIdRedefinitionType = QualType(); -- 2.40.0