[cfe-commits] r117541 - /cfe/trunk/lib/AST/ASTContext.cpp
Argyrios Kyrtzidis
akyrtzi at gmail.com
Thu Oct 28 02:29:35 PDT 2010
Author: akirtzidis
Date: Thu Oct 28 04:29:35 2010
New Revision: 117541
URL: http://llvm.org/viewvc/llvm-project?rev=117541&view=rev
Log:
Initialize the ASTMutationListener. Thanks goes to Abramo Bagnara!
Modified:
cfe/trunk/lib/AST/ASTContext.cpp
Modified: cfe/trunk/lib/AST/ASTContext.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/ASTContext.cpp?rev=117541&r1=117540&r2=117541&view=diff
==============================================================================
--- cfe/trunk/lib/AST/ASTContext.cpp (original)
+++ cfe/trunk/lib/AST/ASTContext.cpp Thu Oct 28 04:29:35 2010
@@ -166,7 +166,7 @@
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();
More information about the cfe-commits
mailing list