diff options
| author | Roberto Raggi <[email protected]> | 2009-11-17 13:28:20 +0100 |
|---|---|---|
| committer | Roberto Raggi <[email protected]> | 2009-11-17 13:30:39 +0100 |
| commit | 5d7def6d2ad8be72f4b6e1255a779209dbe90ff8 (patch) | |
| tree | 6f7104a1b1a902b99e2492a4840cc7a84117c71e /src/libs/cplusplus/ASTParent.h | |
| parent | 04a333bac68f9c6aac2338f2dd407b25e321223f (diff) | |
Refactored the AST visitors.
Now, the ASTVisitor constructor takes a valid reference to a TranslationUnit.
Diffstat (limited to 'src/libs/cplusplus/ASTParent.h')
| -rw-r--r-- | src/libs/cplusplus/ASTParent.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/cplusplus/ASTParent.h b/src/libs/cplusplus/ASTParent.h index ec5ea563d0c..a934f9c80df 100644 --- a/src/libs/cplusplus/ASTParent.h +++ b/src/libs/cplusplus/ASTParent.h @@ -39,7 +39,7 @@ namespace CPlusPlus { class CPLUSPLUS_EXPORT ASTParent: protected ASTVisitor { public: - ASTParent(Control *control, AST *rootNode); + ASTParent(TranslationUnit *transaltionUnit, AST *rootNode); virtual ~ASTParent(); AST *operator()(AST *ast) const; |
