From: fennecdjay Date: Mon, 17 Jun 2019 15:19:38 +0000 (+0200) Subject: :shirt: Remove debug print X-Git-Tag: nightly~2441 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=7b405cd81e234e830d20434a8947a3239c2a7622;p=gwion.git :shirt: Remove debug print --- diff --git a/src/parse/scan1.c b/src/parse/scan1.c index 834b14d4..52b94a71 100644 --- a/src/parse/scan1.c +++ b/src/parse/scan1.c @@ -37,7 +37,6 @@ ANN static inline void contains(const Type base, const Type t) { ANN static inline void type_contains(const Type base, const Type t) { if(!base->e->contains.ptr) vector_init(&base->e->contains); -printf("%s => %s\n", t->name, base->name); contains(base, t); }