2025-01-29 10:55:49 +01:00

8 lines
104 B
C

#pragma once
#ifdef NDEBUG
#define assert(condition)
#else
static void assert(int condition) {}
#endif