diff options
Diffstat (limited to 'gcc/rust/resolve/rust-ast-resolve-stmt.h')
-rw-r--r-- | gcc/rust/resolve/rust-ast-resolve-stmt.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/gcc/rust/resolve/rust-ast-resolve-stmt.h b/gcc/rust/resolve/rust-ast-resolve-stmt.h index 7521739..81a37b7 100644 --- a/gcc/rust/resolve/rust-ast-resolve-stmt.h +++ b/gcc/rust/resolve/rust-ast-resolve-stmt.h @@ -44,13 +44,14 @@ public: stmt->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::ExprStmtWithBlock &stmt) override { |