DarkflameServer/dCommon/DluAssert.h
David Markowitz 9655f0ee45 make include guards standards conforming
fix compile issues
2024-10-30 00:34:25 -07:00

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