undef macros

This commit is contained in:
CPunch 2023-05-28 12:03:49 -05:00 committed by cpunch
parent cf18bbbe54
commit 2271681cec
1 changed files with 3 additions and 1 deletions

View File

@ -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;