diff options
author | John Hodge <tpg@mutabah.net> | 2016-05-18 18:03:50 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-05-18 18:03:50 +0800 |
commit | c9284d392f89c0108785189ff986efbece5c9b65 (patch) | |
tree | e8564765934db89f7765ddd4a9b171489cd3e1b7 /src/hir/path.hpp | |
parent | 5e4c623370cfa3df4e73f80f980e06766bfad929 (diff) | |
download | mrust-c9284d392f89c0108785189ff986efbece5c9b65.tar.gz |
HIR - Generic bounds
Diffstat (limited to 'src/hir/path.hpp')
-rw-r--r-- | src/hir/path.hpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/hir/path.hpp b/src/hir/path.hpp index a003b4ea..584d598b 100644 --- a/src/hir/path.hpp +++ b/src/hir/path.hpp @@ -49,6 +49,13 @@ public: GenericPath(::HIR::SimplePath sp, ::HIR::PathParams params); }; +class TraitPath +{ +public: + GenericPath m_path; + ::std::vector< ::std::string> m_hrls; +}; + class Path { public: |