From 2a2b29e747d5cf06f930c1b6c671628f1d9e5cb6 Mon Sep 17 00:00:00 2001 From: John Hodge Date: Sun, 9 Dec 2018 08:23:12 +0800 Subject: HIR Types - Comment out an overly-verbose log message --- src/hir/type.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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)); -- cgit v1.2.3