summaryrefslogtreecommitdiff
path: root/src/shared/cplusplus/AST.h
diff options
context:
space:
mode:
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;