diff options
Diffstat (limited to 'gcc/rust/ast/rust-expr.h')
-rw-r--r-- | gcc/rust/ast/rust-expr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rust/ast/rust-expr.h b/gcc/rust/ast/rust-expr.h index cc8c6ea..5f60ec7 100644 --- a/gcc/rust/ast/rust-expr.h +++ b/gcc/rust/ast/rust-expr.h @@ -4980,8 +4980,8 @@ public: InlineAsm (location_t locus, bool is_global_asm) : locus (locus), is_global_asm (is_global_asm) {} - void accept_vis (ASTVisitor &vis) override{}; + void accept_vis (ASTVisitor &vis) override; std::string as_string () const override { return "InlineAsm AST Node"; } location_t get_locus () const override { return locus; } |