]> Nishi Git Mirror - gwion.git/commitdiff
:art: Remove debug print
authorJérémie Astor <fennecdjay@gmail.com>
Sun, 25 Apr 2021 09:30:34 +0000 (11:30 +0200)
committerJérémie Astor <fennecdjay@gmail.com>
Sun, 25 Apr 2021 09:30:34 +0000 (11:30 +0200)
src/parse/operator.c

index b9ad4b5a2c01d0e4fb59ff7195bbf50fa8344907..28b89484f1f84d4fd019691566ccb6ed0caff453 100644 (file)
@@ -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;
 }