diff options
-rw-r--r-- | src/hir_conv/expand_type.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/hir_conv/expand_type.cpp b/src/hir_conv/expand_type.cpp index 16f5f3ea..5e95592c 100644 --- a/src/hir_conv/expand_type.cpp +++ b/src/hir_conv/expand_type.cpp @@ -190,6 +190,10 @@ public: { upper_visitor.visit_path(p, pc); } + void visit_generic_path(::HIR::Visitor::PathContext pc, ::HIR::GenericPath& p) + { + upper_visitor.visit_generic_path(p, pc); + } void visit(::HIR::ExprNode_Let& node) override { |