From f55ba9d3cb1d19624f8fbe830bc30f05ba79c8a0 Mon Sep 17 00:00:00 2001 From: Matt Pharr Date: Mon, 19 Mar 2012 11:28:55 -0700 Subject: [PATCH] Remove (highly verbose) Debug() call for type conversions. --- expr.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/expr.cpp b/expr.cpp index 4ed26877..3d7ad7fa 100644 --- a/expr.cpp +++ b/expr.cpp @@ -552,8 +552,10 @@ TypeConvertExpr(Expr *expr, const Type *toType, const char *errorMsgBase) { if (expr == NULL) return NULL; +#if 0 Debug(expr->pos, "type convert %s -> %s.", expr->GetType()->GetString().c_str(), toType->GetString().c_str()); +#endif const Type *fromType = expr->GetType(); Expr *e = expr;