DEBUG1 on checked only

svn path=/trunk/; revision=15519
This commit is contained in:
Alex Ionescu 2005-05-26 13:53:15 +00:00
parent 6b34120402
commit 3f0ddf5160

View file

@ -73,9 +73,16 @@
#define CPRINT DbgPrint("(%s:%d) ",__FILE__,__LINE__); DbgPrint
#endif
#ifdef __GNUC__ /* using GNU C/C99 macro ellipsis */
#define DPRINT1(args...) do { DbgPrint("(%s:%d) ",__FILE__,__LINE__); DbgPrint(args); } while(0)
#else
#define DPRINT1 DbgPrint("(%s:%d) ",__FILE__,__LINE__); DbgPrint
#endif
#else /* DBG */
#define CPRINT(args...)
#define DPRINT1(args...)
#define assert(x)
#define ASSERT(x)
#define assertmsg(_c_, _m_)
@ -83,12 +90,6 @@
#endif /* DBG */
#ifdef __GNUC__ /* using GNU C/C99 macro ellipsis */
#define DPRINT1(args...) do { DbgPrint("(%s:%d) ",__FILE__,__LINE__); DbgPrint(args); } while(0)
#else
#define DPRINT1 DbgPrint("(%s:%d) ",__FILE__,__LINE__); DbgPrint
#endif
#define CHECKPOINT1 do { DbgPrint("%s:%d\n",__FILE__,__LINE__); } while(0)
#ifndef NDEBUG