diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2010-08-11 13:46:32 +0200 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2010-08-11 15:25:19 +0200 |
commit | f74ba9daef50a0b267056c8753819d59621fc000 (patch) | |
tree | b8400aa8bd8248b6b42552f79d56294ed04d8657 /src/shared/cplusplus/AST.h | |
parent | 6618a3cd679bf76f8325ca38b934545b0d8f4c60 (diff) | |
download | qt-creator-f74ba9daef50a0b267056c8753819d59621fc000.tar.gz |
Introduced CPlusPlus::Template and process the template declarations.
Diffstat (limited to 'src/shared/cplusplus/AST.h')
-rw-r--r-- | src/shared/cplusplus/AST.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/shared/cplusplus/AST.h b/src/shared/cplusplus/AST.h index b1c93cf433..37dd5bb690 100644 --- a/src/shared/cplusplus/AST.h +++ b/src/shared/cplusplus/AST.h @@ -3084,6 +3084,9 @@ public: unsigned greater_token; DeclarationAST *declaration; +public: // annotations + Template *symbol; + public: TemplateDeclarationAST() : export_token(0) @@ -3092,6 +3095,7 @@ public: , template_parameter_list(0) , greater_token(0) , declaration(0) + , symbol(0) {} virtual TemplateDeclarationAST *asTemplateDeclaration() { return this; } |