diff options
author | John Hodge <tpg@mutabah.net> | 2016-06-11 19:23:00 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-06-11 19:23:00 +0800 |
commit | c1474eadca873ff650c71345291f7cdd019b7735 (patch) | |
tree | d1e4b7ce700c0db4ce5119d2ca6a4a30793e1e54 /src/hir/from_ast.hpp | |
parent | eea8d7e37ffdb8886e4dc3ab1c1c715df3935ca8 (diff) | |
download | mrust-c1474eadca873ff650c71345291f7cdd019b7735.tar.gz |
HIR - Move associated type bounds to TraitPath
Diffstat (limited to 'src/hir/from_ast.hpp')
-rw-r--r-- | src/hir/from_ast.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hir/from_ast.hpp b/src/hir/from_ast.hpp index 0822c835..f0795fcf 100644 --- a/src/hir/from_ast.hpp +++ b/src/hir/from_ast.hpp @@ -4,7 +4,7 @@ extern ::HIR::ExprPtr LowerHIR_ExprNode(const ::AST::ExprNode& e); extern ::HIR::Path LowerHIR_Path(const Span& sp, const ::AST::Path& path); -extern ::HIR::GenericPath LowerHIR_GenericPath(const Span& sp, const ::AST::Path& path); +extern ::HIR::GenericPath LowerHIR_GenericPath(const Span& sp, const ::AST::Path& path, bool allow_assoc=false); extern ::HIR::TypeRef LowerHIR_Type(const ::TypeRef& ty); extern ::HIR::Pattern LowerHIR_Pattern(const ::AST::Pattern& pat); |