2020-09-30 16:53:55 +02:00

16 lines
204 B
C

#ifndef __APGTSASSERT_H_
#define __APGTSASSERT_H_
#ifdef _DEBUG
#define ASSERT(f) \
do \
{ \
if (!(f)) \
DebugBreak(); \
} while (0)
#else
#define ASSERT(f)
#endif //_DEBUG
#endif