1
0
Fork 0

use AfxTrace way of TRACE for release build

git-svn-id: svn://svn.lighttpd.net/xcache/trunk@350 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
This commit is contained in:
Xuefer 2007-02-12 08:01:44 +00:00
parent 5a15696e8a
commit dd599c148a
1 changed files with 2 additions and 1 deletions

View File

@ -27,10 +27,11 @@ static inline int TRACE(const char *fmt, ...)
#else /* DEBUG */
# ifdef ZEND_WIN32
static inline int TRACE(const char *fmt, ...)
static inline int TRACE_DUMMY(const char *fmt, ...)
{
return 0;
}
# define TRACE 1 ? 0 : TRACE_DUMMY
# else
# define TRACE(fmt, ...) do { } while (0)
# endif /* ZEND_WIN32 */