6 lines
105 B
C
6 lines
105 B
C
|
#ifdef DEBUG
|
||
|
#define Assert(x) if(!(x)) failed_assert(__FILE__, __LINE__)
|
||
|
#else
|
||
|
#define Assert(x)
|
||
|
#endif
|