Skip to content
Snippets Groups Projects
Commit 24f3b2cf authored by Erik Verbruggen's avatar Erik Verbruggen
Browse files

Re-generated the AST dump visitor methods.

parent 7b3f80e6
No related branches found
No related tags found
No related merge requests found
...@@ -114,8 +114,8 @@ virtual bool visit(DeclaratorAST *ast) ...@@ -114,8 +114,8 @@ virtual bool visit(DeclaratorAST *ast)
nonterminal(iter->value); nonterminal(iter->value);
for (SpecifierListAST *iter = ast->post_attribute_list; iter; iter = iter->next) for (SpecifierListAST *iter = ast->post_attribute_list; iter; iter = iter->next)
nonterminal(iter->value); nonterminal(iter->value);
if (ast->equals_token) if (ast->equal_token)
terminal(ast->equals_token, ast); terminal(ast->equal_token, ast);
nonterminal(ast->initializer); nonterminal(ast->initializer);
return false; return false;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment