diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2009-11-10 14:56:37 +0100 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2009-11-10 16:20:12 +0100 |
commit | b47eee88695ab5ea499a0197a779e37ad745fd5d (patch) | |
tree | 3766b91aece0859b1514066c1e11a8b0c9cbcbd5 /src/shared/cplusplus/AST.h | |
parent | 24b6c858ebc3a16e9a82c0ea6e8fc6743f0e3229 (diff) | |
download | qt-creator-b47eee88695ab5ea499a0197a779e37ad745fd5d.tar.gz |
Cleanup Attributes
Diffstat (limited to 'src/shared/cplusplus/AST.h')
-rw-r--r-- | src/shared/cplusplus/AST.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/shared/cplusplus/AST.h b/src/shared/cplusplus/AST.h index b56fed68c7..e1b901dca5 100644 --- a/src/shared/cplusplus/AST.h +++ b/src/shared/cplusplus/AST.h @@ -296,7 +296,7 @@ public: unsigned attribute_token; unsigned first_lparen_token; unsigned second_lparen_token; - AttributeAST *attributes; + AttributeListAST *attributes; unsigned first_rparen_token; unsigned second_rparen_token; @@ -318,7 +318,6 @@ public: unsigned tag_token; ExpressionListAST *expression_list; unsigned rparen_token; - AttributeAST *next; public: virtual AttributeAST *asAttribute() { return this; } |