diff options
author | John Hodge <tpg@mutabah.net> | 2016-11-25 08:07:15 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-11-25 08:07:15 +0800 |
commit | b4db5f80375ebec7a2705e63cf72ad50c2afc24e (patch) | |
tree | 4f7b0e14323a908d4b11968eea56ab22501de559 | |
parent | b30e0cb052522a03b827e636c1d76219690e3d81 (diff) | |
download | mrust-b4db5f80375ebec7a2705e63cf72ad50c2afc24e.tar.gz |
HIR Expand Type Aliases - Visi generic paths
-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 { |