Removed TemplateArgumentList

This commit is contained in:
Roberto Raggi
2010-08-11 15:02:08 +02:00
parent f3746289b9
commit 8a32c41f6f
7 changed files with 17 additions and 19 deletions

View File

@@ -184,7 +184,7 @@ public:
bool parseStringLiteral(ExpressionAST *&node);
bool parseSwitchStatement(StatementAST *&node);
bool parseTemplateArgument(ExpressionAST *&node);
bool parseTemplateArgumentList(TemplateArgumentListAST *&node);
bool parseTemplateArgumentList(ExpressionListAST *&node);
bool parseTemplateDeclaration(DeclarationAST *&node);
bool parseTemplateParameter(DeclarationAST *&node);
bool parseTemplateParameterList(DeclarationListAST *&node);
@@ -319,9 +319,9 @@ public:
struct TemplateArgumentListEntry {
unsigned index;
unsigned cursor;
TemplateArgumentListAST *ast;
ExpressionListAST *ast;
TemplateArgumentListEntry(unsigned index = 0, unsigned cursor = 0, TemplateArgumentListAST *ast = 0)
TemplateArgumentListEntry(unsigned index = 0, unsigned cursor = 0, ExpressionListAST *ast = 0)
: index(index), cursor(cursor), ast(ast) {}
};