summaryrefslogtreecommitdiff
path: root/src/ast/path.hpp
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2018-12-28 19:58:29 +0800
committerJohn Hodge <tpg@mutabah.net>2018-12-28 19:58:29 +0800
commitb6fb5429b0983d5571c5ec01abbd502526ed9086 (patch)
tree18f4003b59c40d8575ee56c97ae5e855f4844d3d /src/ast/path.hpp
parente16796df604ba1017a19917ea94840ee8c4b0336 (diff)
downloadmrust-b6fb5429b0983d5571c5ec01abbd502526ed9086.tar.gz
Resovle - Macro imports (partial), bugfixes
Diffstat (limited to 'src/ast/path.hpp')
-rw-r--r--src/ast/path.hpp3
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;
})
),
(), (),