diff options
author | John Hodge <tpg@mutabah.net> | 2016-05-29 18:11:02 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-05-29 18:11:02 +0800 |
commit | f89032cc3bb82ae691cc353ac33345bbf8a8559a (patch) | |
tree | a90294c2439029f0575c52d7a9479600fb0e7fc6 /src/hir/visitor.cpp | |
parent | d97f3089b257754741326bda377103d2c99f263e (diff) | |
download | mrust-f89032cc3bb82ae691cc353ac33345bbf8a8559a.tar.gz |
HIR - Add binding pointers to TypeRef and Pattern
Diffstat (limited to 'src/hir/visitor.cpp')
-rw-r--r-- | src/hir/visitor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hir/visitor.cpp b/src/hir/visitor.cpp index 1bc94bc7..33ac6505 100644 --- a/src/hir/visitor.cpp +++ b/src/hir/visitor.cpp @@ -250,7 +250,7 @@ void ::HIR::Visitor::visit_type(::HIR::TypeRef& ty) (Primitive, ), (Path, - this->visit_path(e, ::HIR::Visitor::PathContext::TYPE); + this->visit_path(e.path, ::HIR::Visitor::PathContext::TYPE); ), (Generic, ), |