From 48df7d1bc3807afe00a32d7909acb78d47297f99 2021-12-16 11:38:57 From: MH Date: 2021-12-16 11:38:57 Subject: [PATCH] Remove leftover debug print --- diff --git a/src/protocol/parser/pass_typing.rs b/src/protocol/parser/pass_typing.rs index d9138cbde013caefe4579b686441aa87ecab909e..4eb0f85958973c5846df37d892465fb89e1b5321 100644 --- a/src/protocol/parser/pass_typing.rs +++ b/src/protocol/parser/pass_typing.rs @@ -1444,7 +1444,6 @@ impl PassTyping { let expr_type = &mut infer_expr.expr_type; if !expr_type.is_done && expr_type.parts.len() == 1 && expr_type.parts[0] == InferenceTypePart::IntegerLike { // Force integer type to s32 - println!("DEBUG: Autoinferring (idx {}) {}", infer_expr.expr_id.index, String::from_utf8_lossy(ctx.module().source.section_at_span(ctx.heap[infer_expr.expr_id].full_span()))); expr_type.parts[0] = InferenceTypePart::SInt32; expr_type.is_done = true;