diff options
author | John Hodge <tpg@ucc.asn.au> | 2019-01-05 21:40:36 +0800 |
---|---|---|
committer | John Hodge <tpg@ucc.asn.au> | 2019-01-05 21:40:36 +0800 |
commit | 6d0fe344e94670f2ac0e21094238181f38b0daec (patch) | |
tree | 27557c1d304bc1e39bccd1a0c4d70979680dfc0b /src/hir/from_ast.cpp | |
parent | 20ae8946a614f93cd8b1d1f9315a4478de2c867f (diff) | |
download | mrust-6d0fe344e94670f2ac0e21094238181f38b0daec.tar.gz |
Handle MacroInv in some more places
Diffstat (limited to 'src/hir/from_ast.cpp')
-rw-r--r-- | src/hir/from_ast.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/hir/from_ast.cpp b/src/hir/from_ast.cpp index 49e5a4b6..32561a76 100644 --- a/src/hir/from_ast.cpp +++ b/src/hir/from_ast.cpp @@ -1155,6 +1155,9 @@ namespace { (None, // Ignore. ), + (MacroInv, + // Ignore. + ), (Type, bool is_sized = true; ::std::vector< ::HIR::TraitPath> trait_bounds; |