diff options
Diffstat (limited to 'src/expand/mod.cpp')
-rw-r--r-- | src/expand/mod.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expand/mod.cpp b/src/expand/mod.cpp index 3f0911fe..0cb2c9c7 100644 --- a/src/expand/mod.cpp +++ b/src/expand/mod.cpp @@ -105,7 +105,7 @@ void Expand_Attrs(const ::AST::MetaItems& attrs, AttrStage stage, ::AST::Crate& if( input_ident != "" ) ERROR(mi_span, E0000, "macro_rules! macros can't take an ident"); - auto e = Macro_Invoke(name.c_str(), mr.data, input_tt, mod); + auto e = Macro_Invoke(name.c_str(), *mr.data, input_tt, mod); return e; } } |