mirror of
https://github.com/open-goal/jak-project
synced 2026-05-27 08:09:29 -04:00
c9204f2a9b
* fix release mode asserts * clang * dummy
20 lines
232 B
C
20 lines
232 B
C
/*!
|
|
* @file assert.h
|
|
* Wrapper around <cassert>.
|
|
* Make sure this file is always the last one included.
|
|
*/
|
|
|
|
#if defined NDEBUG
|
|
|
|
#undef NDEBUG
|
|
#undef assert
|
|
#include <cassert>
|
|
|
|
#define NDEBUG 1
|
|
|
|
#else
|
|
|
|
#include <cassert>
|
|
|
|
#endif
|