mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 09:48:20 +00:00
13 lines
209 B
C
13 lines
209 B
C
|
#ifndef __DLUASSERT__H__
|
||
|
#define __DLUASSERT__H__
|
||
|
|
||
|
#include <assert.h>
|
||
|
|
||
|
#ifdef _DEBUG
|
||
|
# define DluAssert(expression) assert(expression)
|
||
|
#else
|
||
|
# define DluAssert(expression)
|
||
|
#endif
|
||
|
|
||
|
#endif //!__DLUASSERT__H__
|