2025-01-22 17:22:38 +01:00

8 lines
104 B
C

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