diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2010-03-25 10:26:33 +0100 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2010-03-25 10:44:42 +0100 |
commit | ddcc40d0fcec541e772e59eb78214fb58819c42a (patch) | |
tree | 11a9630ae8335c136678cb28ae814660dfb642b8 /src/shared/cplusplus/AST.h | |
parent | a52b826600a0abb24035d9af2fc92633f9ae3b60 (diff) | |
download | qt-creator-ddcc40d0fcec541e772e59eb78214fb58819c42a.tar.gz |
Accepts `...' when parsing declarator-ids in C++0x.
Diffstat (limited to 'src/shared/cplusplus/AST.h')
-rw-r--r-- | src/shared/cplusplus/AST.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/shared/cplusplus/AST.h b/src/shared/cplusplus/AST.h index 82cae89361..3c995613b0 100644 --- a/src/shared/cplusplus/AST.h +++ b/src/shared/cplusplus/AST.h @@ -1368,11 +1368,13 @@ protected: class CPLUSPLUS_EXPORT DeclaratorIdAST: public CoreDeclaratorAST { public: + unsigned dot_dot_dot_token; NameAST *name; public: DeclaratorIdAST() - : name(0) + : dot_dot_dot_token(0) + , name(0) {} virtual DeclaratorIdAST *asDeclaratorId() { return this; } |