Remove (highly verbose) Debug() call for type conversions.
This commit is contained in:
2
expr.cpp
2
expr.cpp
@@ -552,8 +552,10 @@ TypeConvertExpr(Expr *expr, const Type *toType, const char *errorMsgBase) {
|
|||||||
if (expr == NULL)
|
if (expr == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
|
#if 0
|
||||||
Debug(expr->pos, "type convert %s -> %s.", expr->GetType()->GetString().c_str(),
|
Debug(expr->pos, "type convert %s -> %s.", expr->GetType()->GetString().c_str(),
|
||||||
toType->GetString().c_str());
|
toType->GetString().c_str());
|
||||||
|
#endif
|
||||||
|
|
||||||
const Type *fromType = expr->GetType();
|
const Type *fromType = expr->GetType();
|
||||||
Expr *e = expr;
|
Expr *e = expr;
|
||||||
|
|||||||
Reference in New Issue
Block a user