Remove (highly verbose) Debug() call for type conversions.

This commit is contained in:
Matt Pharr
2012-03-19 11:28:55 -07:00
parent 8adb99b768
commit f55ba9d3cb

View File

@@ -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;