DarkflameServer/thirdparty/raknet/Source/RakAssert.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
147 B
C
Raw Normal View History

#include <assert.h>
// So stupid Linux doesn't assert in release
#ifdef _DEBUG
#define RakAssert(x) assert(x);
#else
#define RakAssert(x)
#endif