summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2017-01-21 23:23:06 +0800
committerJohn Hodge <tpg@mutabah.net>2017-01-21 23:23:06 +0800
commita45ad45f0d9b7e5a2f8c03b7beb3515f7251ee5e (patch)
tree88fc635cd0221d54526537201b38f2b9739e4645
parente3d8b81e86a6d22f4768f2086a32d99bf34d3c52 (diff)
downloadmrust-a45ad45f0d9b7e5a2f8c03b7beb3515f7251ee5e.tar.gz
Static Typecheck - Remove debug
-rw-r--r--src/hir_typeck/static.cpp1
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;
}
}