summaryrefslogtreecommitdiff
path: root/copy.c
diff options
context:
space:
mode:
Diffstat (limited to 'copy.c')
-rw-r--r--copy.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/copy.c b/copy.c
index bcb04aa..0ad1adc 100644
--- a/copy.c
+++ b/copy.c
@@ -118,7 +118,6 @@ static void copy_type(Copier *c, Type *out, Type *in) {
case TYPE_STRUCT: {
out->struc = allocr_malloc(c->allocr, sizeof *out->struc);
*out->struc = *in->struc;
- printf("\n--- USE %p\n",in->struc);
size_t nfields = arr_len(in->struc->fields);
out->struc->fields = NULL;