From 5ffd06dd6129110065149ab7c4592bd79acd5f5b Mon Sep 17 00:00:00 2001 From: David Mak Date: Mon, 11 Dec 2023 12:18:53 +0800 Subject: [PATCH] core: Remove debugging statement --- nac3core/src/typecheck/typedef/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/nac3core/src/typecheck/typedef/mod.rs b/nac3core/src/typecheck/typedef/mod.rs index 1be280a..21d4fd2 100644 --- a/nac3core/src/typecheck/typedef/mod.rs +++ b/nac3core/src/typecheck/typedef/mod.rs @@ -746,7 +746,6 @@ impl Unifier { (TConstant { value: val1, ty: ty1, .. }, TConstant { value: val2, ty: ty2, .. }) => { if val1 != val2 { - eprintln!("VALUE MISMATCH: lhs={val1:?} rhs={val2:?} eq={}", val1 == val2); return self.incompatible_types(a, b) } self.unify_impl(*ty1, *ty2, false)?;