mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-12 19:28:21 +00:00
9655f0ee45
fix compile issues
13 lines
194 B
C
13 lines
194 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
|