diff options
author | John Hodge <tpg@mutabah.net> | 2016-06-04 13:48:21 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-06-04 13:48:21 +0800 |
commit | f92a45d8054cc18a037449ec136bf874ce20fc5a (patch) | |
tree | 0a0f977790faaa73f1b7987b3abbc7dbfc3e9364 /src/hir/path.hpp | |
parent | e33d210a4a85e91abe04f1874f460b6e60c6b5e0 (diff) | |
download | mrust-f92a45d8054cc18a037449ec136bf874ce20fc5a.tar.gz |
HIR Typeck - Add slice unsize, breaks due to inferrence order
Diffstat (limited to 'src/hir/path.hpp')
-rw-r--r-- | src/hir/path.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/hir/path.hpp b/src/hir/path.hpp index b5bc061b..02aedba4 100644 --- a/src/hir/path.hpp +++ b/src/hir/path.hpp @@ -56,6 +56,8 @@ struct PathParams //bool operator==(const PathParams& x) const; //bool operator<(const PathParams& x) const; + + friend ::std::ostream& operator<<(::std::ostream& os, const PathParams& x); }; /// Generic path - Simple path with one lot of generic params |