diff options
author | John Hodge <tpg@mutabah.net> | 2016-10-09 10:27:50 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-10-09 10:27:50 +0800 |
commit | 967ccfbfd50e0ce0aec985bcb394e34787450f75 (patch) | |
tree | 7bddc5c13047aa7b0f12247edb4a8ca965f657d6 /src/dump_as_rust.cpp | |
parent | 5d75ae0b19803ee79d191cd985b5e8896df51ccb (diff) | |
download | mrust-967ccfbfd50e0ce0aec985bcb394e34787450f75.tar.gz |
AST - Remove free MacroInvocation lists
Diffstat (limited to 'src/dump_as_rust.cpp')
-rw-r--r-- | src/dump_as_rust.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/dump_as_rust.cpp b/src/dump_as_rust.cpp index db44ccbc..b8443845 100644 --- a/src/dump_as_rust.cpp +++ b/src/dump_as_rust.cpp @@ -712,6 +712,9 @@ void RustPrinter::handle_module(const AST::Module& mod) (None, // Ignore, it's been deleted by #[cfg] ), + (MacroInv, + // TODO: Dump macro invocations + ), (Type, m_os << indent() << "type " << it.name << " = " << e.type() << ";\n"; ), |