summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2018-12-09 08:23:12 +0800
committerJohn Hodge <tpg@mutabah.net>2018-12-09 08:23:12 +0800
commit2a2b29e747d5cf06f930c1b6c671628f1d9e5cb6 (patch)
tree7e18383b4dbc58144d725c8ded7d0c65909e62aa /src
parent2637ce90570d305eca74d2324793e730fb8a3452 (diff)
downloadmrust-2a2b29e747d5cf06f930c1b6c671628f1d9e5cb6.tar.gz
HIR Types - Comment out an overly-verbose log message
Diffstat (limited to 'src')
-rw-r--r--src/hir/type.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hir/type.cpp b/src/hir/type.cpp
index 434d471b..2c24e3e1 100644
--- a/src/hir/type.cpp
+++ b/src/hir/type.cpp
@@ -889,7 +889,7 @@ bool ::HIR::TypeRef::match_test_generics(const Span& sp, const ::HIR::TypeRef& x
}
::HIR::Compare HIR::TypeRef::compare_with_placeholders(const Span& sp, const ::HIR::TypeRef& x, t_cb_resolve_type resolve_placeholder) const
{
- TRACE_FUNCTION_F(*this << " ?= " << x);
+ //TRACE_FUNCTION_F(*this << " ?= " << x);
const auto& left = (m_data.is_Infer() || m_data.is_Generic() ? resolve_placeholder(*this) : *this);
//const auto& left = *this;
const auto& right = (x.m_data.is_Infer() ? resolve_placeholder(x) : (x.m_data.is_Generic() ? resolve_placeholder(x) : x));