diff options
author | John Hodge <tpg@mutabah.net> | 2016-03-20 12:29:44 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-03-20 12:29:44 +0800 |
commit | b79e71e5f11e14516f13ea2f8437d5deaa10e653 (patch) | |
tree | 3097c0251c83e32e4e673a840f5708110a8adc4c /src/ast/crate.cpp | |
parent | 0ee80748a3dcb97f308e9b0b71c22d28868d12cf (diff) | |
download | mrust-b79e71e5f11e14516f13ea2f8437d5deaa10e653.tar.gz |
Tagged Union - Rework to remove indirection
Diffstat (limited to 'src/ast/crate.cpp')
-rw-r--r-- | src/ast/crate.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ast/crate.cpp b/src/ast/crate.cpp index 135c2ae7..38bf92c3 100644 --- a/src/ast/crate.cpp +++ b/src/ast/crate.cpp @@ -15,7 +15,7 @@ namespace { TU_MATCH_DEF(::AST::Item, (sm.data), (e), ( ), (Module, - iterate_module(e.e, fcn); + iterate_module(e, fcn); ) ) } |