mirror of
https://github.com/DarkflameUniverse/DarkflameServer
synced 2024-08-30 18:43:58 +00:00
15 lines
225 B
C
15 lines
225 B
C
|
#ifndef __DLUASSERT__H__
|
||
|
#define __DLUASSERT__H__
|
||
|
|
||
|
#include <assert.h>
|
||
|
|
||
|
#define _DEBUG
|
||
|
|
||
|
#ifdef _DEBUG
|
||
|
# define DluAssert(expression) assert(expression)
|
||
|
#else
|
||
|
# define DluAssert(expression)
|
||
|
#endif
|
||
|
|
||
|
#endif //!__DLUASSERT__H__
|