diff options
author | John Hodge <tpg@mutabah.net> | 2016-09-18 16:40:54 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-09-18 16:40:54 +0800 |
commit | c9ed676395ad319e29f6551411352b3506ab442b (patch) | |
tree | 72581f6ee54c5646e1b94acdfa0c08bbf2c695de /src/hir/path.hpp | |
parent | c947b1eab0e6ece06fb4524c1f197e6e8e66babd (diff) | |
download | mrust-c9ed676395ad319e29f6551411352b3506ab442b.tar.gz |
HIR Typecheck Expr - Rough support for casts that trigger unsizing
Diffstat (limited to 'src/hir/path.hpp')
-rw-r--r-- | src/hir/path.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/hir/path.hpp b/src/hir/path.hpp index c791812d..0ee4c958 100644 --- a/src/hir/path.hpp +++ b/src/hir/path.hpp @@ -83,6 +83,7 @@ struct PathParams ::std::vector<TypeRef> m_types; PathParams(); + PathParams(::HIR::TypeRef ); PathParams clone() const; PathParams(const PathParams&) = delete; PathParams& operator=(const PathParams&) = delete; |