diff options
author | John Hodge <tpg@mutabah.net> | 2017-01-21 23:23:06 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2017-01-21 23:23:06 +0800 |
commit | a45ad45f0d9b7e5a2f8c03b7beb3515f7251ee5e (patch) | |
tree | 88fc635cd0221d54526537201b38f2b9739e4645 /src | |
parent | e3d8b81e86a6d22f4768f2086a32d99bf34d3c52 (diff) | |
download | mrust-a45ad45f0d9b7e5a2f8c03b7beb3515f7251ee5e.tar.gz |
Static Typecheck - Remove debug
Diffstat (limited to 'src')
-rw-r--r-- | src/hir_typeck/static.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/hir_typeck/static.cpp b/src/hir_typeck/static.cpp index ad62d73e..fc48f5ac 100644 --- a/src/hir_typeck/static.cpp +++ b/src/hir_typeck/static.cpp @@ -1205,7 +1205,6 @@ bool StaticTraitResolve::type_is_copy(const Span& sp, const ::HIR::TypeRef& ty) auto it = m_copy_cache.find(ty); if( it != m_copy_cache.end() ) { - DEBUG("Cached " << it->first << " = " << it->second); return it->second; } } |