Replaced line 15 with #if defined(__GLIBC__) && !defined(NDEBUG) to fix problems regarding malloc hook on mac os x

This was SVN commit r5211.
This commit is contained in:
Seth
2007-06-23 17:14:00 +00:00
parent 12ac1deebd
commit 91a1d0fc3f
+1 -1
View File
@@ -12,7 +12,7 @@
#include "ProfileViewer.h"
#include "lib/timer.h"
#if GCC_VERSION && !defined(NDEBUG)
#if defined(__GLIBC__) && !defined(NDEBUG)
# define GLIBC_MALLOC_HOOK
# include <malloc.h>
# include "ThreadUtil.h"