From 2271681cec03387f88940a79de816e86a6ca1525 Mon Sep 17 00:00:00 2001 From: CPunch Date: Sun, 28 May 2023 12:03:49 -0500 Subject: [PATCH] undef macros --- src/cundump.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/cundump.c b/src/cundump.c index e4956b1..18e51aa 100644 --- a/src/cundump.c +++ b/src/cundump.c @@ -17,7 +17,6 @@ static bool readCValue(UndumpState *udstate, CValue *val); #define check(e) \ if (!e) { \ - printf("FAILED %d\n", __LINE__); \ return false; \ } @@ -197,6 +196,9 @@ static bool readCValue(UndumpState *udstate, CValue *val) return true; } +#undef READ_VAR +#undef check + int cosmoD_undump(CState *state, cosmo_Reader reader, const void *userData, CObjFunction **func) { UndumpState udstate;