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/type.cpp | |
parent | eea8d7e37ffdb8886e4dc3ab1c1c715df3935ca8 (diff) | |
download | mrust-c1474eadca873ff650c71345291f7cdd019b7735.tar.gz |
HIR - Move associated type bounds to TraitPath
Diffstat (limited to 'src/hir/type.cpp')
-rw-r--r-- | src/hir/type.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hir/type.cpp b/src/hir/type.cpp index f78c45ad..b57dcc7c 100644 --- a/src/hir/type.cpp +++ b/src/hir/type.cpp @@ -250,7 +250,7 @@ bool ::HIR::TypeRef::operator==(const ::HIR::TypeRef& x) const (Closure, if( te.node != xe.node ) return false; - assert( te.m_rettype == xe.m_rettype ); + //assert( te.m_rettype == xe.m_rettype ); return true; ) ) |