diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2010-10-28 09:29:35 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2010-10-28 09:29:35 +0000 |
commit | 9a44b5f5593bd8a385d06b07c564795f643ec8da (patch) | |
tree | a979d0f750f7c5e3d2798b63cbedbda8256d28be /lib/AST/ASTContext.cpp | |
parent | e09a275444576deb2c8d9e2255554242f65d7c00 (diff) |
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
Diffstat (limited to 'lib/AST/ASTContext.cpp')
-rw-r--r-- | lib/AST/ASTContext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |