diff options
Diffstat (limited to 'src/hir_expand/ufcs_everything.cpp')
-rw-r--r-- | src/hir_expand/ufcs_everything.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/hir_expand/ufcs_everything.cpp b/src/hir_expand/ufcs_everything.cpp index 97947f4a..79feea32 100644 --- a/src/hir_expand/ufcs_everything.cpp +++ b/src/hir_expand/ufcs_everything.cpp @@ -812,6 +812,11 @@ namespace { }; } // namespace +void HIR_Expand_UfcsEverything_Expr(const ::HIR::Crate& crate, ::HIR::ExprPtr& exp) +{ + ExprVisitor_Mutate ev { crate }; + ev.visit_node_ptr(exp); +} void HIR_Expand_UfcsEverything(::HIR::Crate& crate) { OuterVisitor ov(crate); |