aboutsummaryrefslogtreecommitdiff
path: root/gcc/rust/resolve/rust-ast-resolve-toplevel.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/rust/resolve/rust-ast-resolve-toplevel.h')
-rw-r--r--gcc/rust/resolve/rust-ast-resolve-toplevel.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/gcc/rust/resolve/rust-ast-resolve-toplevel.h b/gcc/rust/resolve/rust-ast-resolve-toplevel.h
index 39d6818..762010c 100644
--- a/gcc/rust/resolve/rust-ast-resolve-toplevel.h
+++ b/gcc/rust/resolve/rust-ast-resolve-toplevel.h
@@ -43,12 +43,13 @@ public:
item->accept_vis (resolver);
};
- void visit (AST::MacroInvocationSemi &invoc) override
- {
- AST::ASTFragment &fragment = invoc.get_fragment ();
- for (auto &node : fragment.get_nodes ())
- node.accept_vis (*this);
- }
+ // FIXME: ARTHUR: See if this is necessary for MacroInvocation
+ // void visit (AST::MacroInvocationSemi &invoc) override
+ // {
+ // AST::ASTFragment &fragment = invoc.get_fragment ();
+ // for (auto &node : fragment.get_nodes ())
+ // node.accept_vis (*this);
+ // }
void visit (AST::Module &module) override
{