summaryrefslogtreecommitdiff
path: root/src/shared/cplusplus/AST.h
diff options
context:
space:
mode:
authorRoberto Raggi <roberto.raggi@nokia.com>2009-06-18 17:48:55 +0200
committerRoberto Raggi <roberto.raggi@nokia.com>2009-06-18 17:49:17 +0200
commit9c038180d81be6506554907998cab4cb1dd8b3c2 (patch)
tree82807dd4c03805045ce8c534f84218252db8961c /src/shared/cplusplus/AST.h
parentc3c98cca785d24c05e552ed5ed113a7b73341965 (diff)
downloadqt-creator-9c038180d81be6506554907998cab4cb1dd8b3c2.tar.gz
Improved compatibility with the gcc extensions.
Diffstat (limited to 'src/shared/cplusplus/AST.h')
-rw-r--r--src/shared/cplusplus/AST.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/shared/cplusplus/AST.h b/src/shared/cplusplus/AST.h
index bf4da2014a..f345fd76b0 100644
--- a/src/shared/cplusplus/AST.h
+++ b/src/shared/cplusplus/AST.h
@@ -371,10 +371,11 @@ public:
class CPLUSPLUS_EXPORT DeclaratorAST: public AST
{
public:
+ SpecifierAST *attributes;
PtrOperatorAST *ptr_operators;
CoreDeclaratorAST *core_declarator;
PostfixDeclaratorAST *postfix_declarators;
- SpecifierAST *attributes;
+ SpecifierAST *post_attributes;
unsigned equals_token;
ExpressionAST *initializer;