diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2009-11-13 12:36:51 +0100 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2009-11-13 12:38:18 +0100 |
commit | baffd97efb1fd6da004fedf620577f8a97445793 (patch) | |
tree | 5131ff5b8f40d3d76ae9ed993093f1668b7a7c31 /src/shared/cplusplus/AST.h | |
parent | 28ab85b13794f2443cfd714bbf1daa5e91bc6b2a (diff) | |
download | qt-creator-baffd97efb1fd6da004fedf620577f8a97445793.tar.gz |
Fixed parsing of ctor-initializers and added a manual test for the AST matchers
Diffstat (limited to 'src/shared/cplusplus/AST.h')
-rw-r--r-- | src/shared/cplusplus/AST.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/cplusplus/AST.h b/src/shared/cplusplus/AST.h index d30858f050..559932843b 100644 --- a/src/shared/cplusplus/AST.h +++ b/src/shared/cplusplus/AST.h @@ -1187,7 +1187,7 @@ class CPLUSPLUS_EXPORT MemInitializerAST: public AST public: NameAST *name; unsigned lparen_token; - ExpressionAST *expression; + ExpressionListAST *expression_list; unsigned rparen_token; public: |