Removed TemplateArgumentListAST

Done with Erik Verbruggen
This commit is contained in:
Roberto Raggi
2009-11-10 12:37:46 +01:00
parent 6e3e293e53
commit 8efb73f5d2
9 changed files with 13 additions and 55 deletions

View File

@@ -240,7 +240,7 @@ protected:
else if (TemplateIdAST *template_id = name->asTemplateId()) {
for (TemplateArgumentListAST *it = template_id->template_arguments; it; it = it->next) {
accept(it->template_argument);
accept(it->value);
}
}
}
@@ -277,7 +277,7 @@ protected:
virtual bool visit(TemplateIdAST *ast)
{
for (TemplateArgumentListAST *arg = ast->template_arguments; arg; arg = arg->next)
accept(arg->template_argument);
accept(arg->value);
unsigned line, column;
getTokenStartPosition(ast->firstToken(), &line, &column);