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.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/shared/cplusplus/AST.h b/src/shared/cplusplus/AST.h
index bd5b91f4ad..b56fed68c7 100644
--- a/src/shared/cplusplus/AST.h
+++ b/src/shared/cplusplus/AST.h
@@ -375,9 +375,6 @@ public:
class CPLUSPLUS_EXPORT PostfixDeclaratorAST: public AST
{
public:
- PostfixDeclaratorAST *next;
-
-public:
virtual PostfixDeclaratorAST *asPostfixDeclarator() { return this; }
};
@@ -387,7 +384,7 @@ public:
SpecifierAST *attributes;
PtrOperatorAST *ptr_operators;
CoreDeclaratorAST *core_declarator;
- PostfixDeclaratorAST *postfix_declarators;
+ PostfixDeclaratorListAST *postfix_declarators;
SpecifierAST *post_attributes;
unsigned equals_token;
ExpressionAST *initializer;