mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2025-04-19 06:02:03 +00:00
prefer using DEBUG rather than NDEBUG
This commit is contained in:
parent
c43bb5d505
commit
734e5db849
1 changed files with 3 additions and 3 deletions
|
@ -335,10 +335,10 @@ do { strncpy(_dst,_src,_n); \
|
|||
#define M_LN10 2.3025850929940456840179914546844
|
||||
#endif
|
||||
|
||||
#ifdef NDEBUG
|
||||
#define FLUID_ASSERT(a)
|
||||
#else
|
||||
#ifdef DEBUG
|
||||
#define FLUID_ASSERT(a) g_assert(a)
|
||||
#else
|
||||
#define FLUID_ASSERT(a)
|
||||
#endif
|
||||
|
||||
#define FLUID_LIKELY G_LIKELY
|
||||
|
|
Loading…
Reference in a new issue