diff options
Diffstat (limited to 'gcc/rust/ast/rust-macro.h')
-rw-r--r-- | gcc/rust/ast/rust-macro.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/rust/ast/rust-macro.h b/gcc/rust/ast/rust-macro.h index 51220e4..0fb16d6 100644 --- a/gcc/rust/ast/rust-macro.h +++ b/gcc/rust/ast/rust-macro.h @@ -345,6 +345,8 @@ public: std::vector<MacroRule> &get_macro_rules () { return rules; } const std::vector<MacroRule> &get_macro_rules () const { return rules; } + Location get_locus () const override final { return locus; } + protected: /* Use covariance to implement clone function as returning this object rather * than base */ @@ -373,8 +375,7 @@ public: invoc_data (std::move (invoc_data)), locus (locus) {} - Location get_locus () const { return locus; } - Location get_locus_slow () const final override { return get_locus (); } + Location get_locus () const override final { return locus; } void accept_vis (ASTVisitor &vis) override; |