mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-04-27 00:56:30 +00:00
13 lines
225 B
C
13 lines
225 B
C
#ifndef __DLUASSERT__H__
|
|
#define __DLUASSERT__H__
|
|
|
|
#include <assert.h>
|
|
|
|
#ifdef _DEBUG
|
|
# define DluAssert(expression) do { assert(expression) } while(0)
|
|
#else
|
|
# define DluAssert(expression)
|
|
#endif
|
|
|
|
#endif //!__DLUASSERT__H__
|