mirror of
https://github.com/Squareville/wonderland-server.git
synced 2025-12-16 20:34:54 -06:00
13 lines
226 B
C
13 lines
226 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__
|