diff options
author | John Hodge <tpg@mutabah.net> | 2015-09-19 18:16:36 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2015-09-19 18:16:36 +0800 |
commit | e6738ed57d644572e7cbefa6d68a4118935a5f80 (patch) | |
tree | a38b823d4b3771b045239a2f811eb63824a1032c /src/types.hpp | |
parent | 03e211d6eeb3f8f3c6f0b22f77c2074e81443952 (diff) | |
download | mrust-e6738ed57d644572e7cbefa6d68a4118935a5f80.tar.gz |
Disable UFCS resolve (due to ordering issues), fix Self handling
Diffstat (limited to 'src/types.hpp')
-rw-r--r-- | src/types.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/types.hpp b/src/types.hpp index 5bb257c7..90f9ee3b 100644 --- a/src/types.hpp +++ b/src/types.hpp @@ -103,6 +103,7 @@ public: TypeData m_data;
TypeRef(TypeRef&& other) noexcept:
+ //m_span( mv$(other.m_span) ),
m_data( mv$(other.m_data) )
{}
|