Ported the accept methods.

This commit is contained in:
Roberto Raggi
2009-11-10 16:19:52 +01:00
parent cdb1443219
commit e5eb88a31f
8 changed files with 105 additions and 124 deletions

View File

@@ -366,8 +366,8 @@ protected:
{
accept(ast->parameters);
for (SpecifierAST *spec = ast->cv_qualifier_seq; spec; spec = spec->next)
accept(spec);
for (SpecifierListAST *it = ast->cv_qualifier_seq; it; it = it->next)
accept(it->value);
accept(ast->exception_specification);