summaryrefslogtreecommitdiff
path: root/src/resolve
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2016-10-09 10:27:50 +0800
committerJohn Hodge <tpg@mutabah.net>2016-10-09 10:27:50 +0800
commit967ccfbfd50e0ce0aec985bcb394e34787450f75 (patch)
tree7bddc5c13047aa7b0f12247edb4a8ca965f657d6 /src/resolve
parent5d75ae0b19803ee79d191cd985b5e8896df51ccb (diff)
downloadmrust-967ccfbfd50e0ce0aec985bcb394e34787450f75.tar.gz
AST - Remove free MacroInvocation lists
Diffstat (limited to 'src/resolve')
-rw-r--r--src/resolve/absolute.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resolve/absolute.cpp b/src/resolve/absolute.cpp
index 1c725718..16728075 100644
--- a/src/resolve/absolute.cpp
+++ b/src/resolve/absolute.cpp
@@ -1843,7 +1843,7 @@ void Resolve_Absolute_ImplItems(Context& item_context, ::std::vector< ::AST::Im
{
TU_MATCH(AST::Item, (*i.data), (e),
(None, ),
- (MacroInv, BUG(i.data->span, "Resolve_Absolute_ImplItems - MacroInv");),
+ (MacroInv, ),
(Impl , BUG(i.data->span, "Resolve_Absolute_ImplItems - " << i.data->tag_str());),
(NegImpl, BUG(i.data->span, "Resolve_Absolute_ImplItems - " << i.data->tag_str());),