From 774ff3f1cd80f2aab08178e16563c49c70443be0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Astor?= Date: Sun, 25 Apr 2021 11:30:34 +0200 Subject: [PATCH] :art: Remove debug print --- src/parse/operator.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/parse/operator.c b/src/parse/operator.c index b9ad4b5a..28b89484 100644 --- a/src/parse/operator.c +++ b/src/parse/operator.c @@ -91,11 +91,7 @@ ANN static M_Operator* new_mo(MemPool p, const struct Op_Import* opi) { if(opi->func) { mo->ck = opi->func->ck; mo->em = opi->func->em; - if(opi->func->effect.ptr) { -if(opi->lhs && opi->lhs != OP_ANY_TYPE) -puts(opi->lhs->name); - mo->effect.ptr = opi->func->effect.ptr; -} + mo->effect.ptr = opi->func->effect.ptr; } return mo; } -- 2.43.0