Removed DeclaratorListAST

Done with Erik Verbruggen
This commit is contained in:
Roberto Raggi
2009-11-10 12:34:29 +01:00
parent 77e7899e7c
commit 6e3e293e53
8 changed files with 14 additions and 59 deletions

View File

@@ -786,22 +786,6 @@ protected:
virtual void accept0(ASTVisitor *visitor);
};
class CPLUSPLUS_EXPORT DeclaratorListAST: public AST
{
public:
DeclaratorAST *declarator;
DeclaratorListAST *next;
public:
virtual DeclaratorListAST *asDeclaratorList() { return this; }
virtual unsigned firstToken() const;
virtual unsigned lastToken() const;
protected:
virtual void accept0(ASTVisitor *visitor);
};
class CPLUSPLUS_EXPORT DeleteExpressionAST: public ExpressionAST
{
public: