diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-12-15 10:19:59 +0000 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-12-15 10:19:59 +0000 |
| commit | aed11c46192a3634afb43bdcc7514464f99a77b9 (patch) | |
| tree | e0315675d6d8a4ad71300cffe28b62e53c34ba11 /src | |
| parent | 7d46684030d216f6862c6df0afc3d8371c533b88 (diff) | |
Remove debug string
Diffstat (limited to 'src')
| -rw-r--r-- | src/check_expr.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/check_expr.cpp b/src/check_expr.cpp index 83af90280..4a3b38656 100644 --- a/src/check_expr.cpp +++ b/src/check_expr.cpp @@ -4390,10 +4390,6 @@ gb_internal void check_binary_expr(CheckerContext *c, Operand *x, Ast *node, Typ return; } - if (c->proc_name == "main") { - gb_printf_err("HERE! 1 %s\n", type_to_string(x->type)); - } - if (op.kind == Token_Quo && is_type_integer(x->type)) { op.kind = Token_QuoEq; // NOTE(bill): Hack to get division of integers } |