From 996f9be91c2567c59acb827ddfdd7cb91431c16e Mon Sep 17 00:00:00 2001 From: cannoli-fruit Date: Wed, 29 Jul 2026 00:50:44 -0400 Subject: [PATCH] Remove debug print from hm implementation --- lazy.h | 1 - 1 file changed, 1 deletion(-) diff --git a/lazy.h b/lazy.h index fe94a9a..1d7c704 100644 --- a/lazy.h +++ b/lazy.h @@ -241,7 +241,6 @@ long long lz_sb_atoll(Lz_SB *src); void *newvals = malloc(newcap*sizeof(*(hm).vals));\ _Bool *newexists = calloc(newcap, sizeof(_Bool));\ _Bool *newtombstones = calloc(newcap, sizeof(_Bool));\ - printf("Grow\n");\ \ for (size_t i = 0; i < (hm).cap; ++i) {\ if ((hm).exists[i]) {\