diff options
Diffstat (limited to 'gcc/rust/hir/rust-ast-lower-base.h')
-rw-r--r-- | gcc/rust/hir/rust-ast-lower-base.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/rust/hir/rust-ast-lower-base.h b/gcc/rust/hir/rust-ast-lower-base.h index d0171a5..eb95435 100644 --- a/gcc/rust/hir/rust-ast-lower-base.h +++ b/gcc/rust/hir/rust-ast-lower-base.h @@ -318,6 +318,9 @@ protected: HIR::ExternBlock *lower_extern_block (AST::ExternBlock &extern_block); HIR::ClosureParam lower_closure_param (AST::ClosureParam ¶m); + + /* Lower a macro definition if it should be exported */ + void lower_macro_definition (AST::MacroRulesDefinition &def); }; } // namespace HIR |