diff options
author | John Hodge <tpg@mutabah.net> | 2018-12-28 19:58:29 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2018-12-28 19:58:29 +0800 |
commit | b6fb5429b0983d5571c5ec01abbd502526ed9086 (patch) | |
tree | 18f4003b59c40d8575ee56c97ae5e855f4844d3d /src/ast/path.hpp | |
parent | e16796df604ba1017a19917ea94840ee8c4b0336 (diff) | |
download | mrust-b6fb5429b0983d5571c5ec01abbd502526ed9086.tar.gz |
Resovle - Macro imports (partial), bugfixes
Diffstat (limited to 'src/ast/path.hpp')
-rw-r--r-- | src/ast/path.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ast/path.hpp b/src/ast/path.hpp index b1453f04..89804b61 100644 --- a/src/ast/path.hpp +++ b/src/ast/path.hpp @@ -20,6 +20,7 @@ #include "../include/ident.hpp" class TypeRef; +class MacroRules; namespace HIR { class Module; @@ -138,7 +139,7 @@ TAGGED_UNION_EX(PathBinding_Macro, (), Unbound, ( }), (MacroRules, struct { const ExternCrate* crate_; // Can be NULL - //const MacroRules* mac; + const MacroRules* mac; }) ), (), (), |