Fix broken #ifdef

This commit is contained in:
derselbst 2019-10-27 17:07:43 +01:00
parent c545ce832e
commit 34b4db10b7

View file

@ -225,7 +225,7 @@ do { strncpy(_dst,_src,_n); \
#define M_LN10 2.3025850929940456840179914546844
#endif
#ifdef DEBUG && !defined(NDEBUG)
#if defined(DEBUG) && !defined(NDEBUG)
#define FLUID_ASSERT(a) g_assert(a)
#else
#define FLUID_ASSERT(a)