summaryrefslogtreecommitdiff
path: root/src/shared/cplusplus/AST.h
diff options
context:
space:
mode:
authorRoberto Raggi <roberto.raggi@nokia.com>2009-11-10 14:16:39 +0100
committerRoberto Raggi <roberto.raggi@nokia.com>2009-11-10 16:20:11 +0100
commitaff9a743668575898d5eafe30e8e240e4a53342a (patch)
tree0fe33338c6c51ae25d85055021a64f75996724a8 /src/shared/cplusplus/AST.h
parent73a4f2977aaf68a46bd46062e41144349feda878 (diff)
downloadqt-creator-aff9a743668575898d5eafe30e8e240e4a53342a.tar.gz
Cleanup NewArrayDeclaratorAST
Diffstat (limited to 'src/shared/cplusplus/AST.h')
-rw-r--r--src/shared/cplusplus/AST.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/shared/cplusplus/AST.h b/src/shared/cplusplus/AST.h
index 3dd95c5e53..310b3d39e2 100644
--- a/src/shared/cplusplus/AST.h
+++ b/src/shared/cplusplus/AST.h
@@ -1333,7 +1333,6 @@ public:
unsigned lbracket_token;
ExpressionAST *expression;
unsigned rbracket_token;
- NewArrayDeclaratorAST *next;
public:
virtual NewArrayDeclaratorAST *asNewArrayDeclarator() { return this; }
@@ -1392,7 +1391,7 @@ class CPLUSPLUS_EXPORT NewTypeIdAST: public AST
public:
SpecifierAST *type_specifier;
PtrOperatorAST *ptr_operators;
- NewArrayDeclaratorAST *new_array_declarators;
+ NewArrayDeclaratorListAST *new_array_declarators;
public:
virtual NewTypeIdAST *asNewTypeId() { return this; }