From 7ff232c814e6aa54d115aec47fe83d2270b23f94 Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Sat, 6 Aug 2022 14:52:59 +0100 Subject: [PATCH] Removed a trace statement --- source/parser.c | 1 - 1 file changed, 1 deletion(-) diff --git a/source/parser.c b/source/parser.c index 09147bb..933de54 100644 --- a/source/parser.c +++ b/source/parser.c @@ -409,7 +409,6 @@ static bool calcStaticBinaryArithmetic(Node** nodeHandle) { if(IS_FLOAT(lhs) && IS_FLOAT(rhs)) { switch((*nodeHandle)->binary.opcode) { case OP_ADDITION: - printf("binary foobar"); result = TO_FLOAT_LITERAL( AS_FLOAT(lhs) + AS_FLOAT(rhs) ); break;