mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 19:26:33 +00:00
only define DPRINT macro if the compiler can handle __VA_ARGS__
reduces Warnings when compiling with MSVC svn path=/trunk/; revision=18520
This commit is contained in:
@@ -61,8 +61,9 @@
|
||||
#define CHECKPOINT do { DbgPrint("%s:%d\n",__FILE__,__LINE__); } while(0);
|
||||
|
||||
#else
|
||||
|
||||
#define DPRINT(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
|
||||
#if defined (__STDC__)
|
||||
#define DPRINT(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
|
||||
#endif
|
||||
#define CHECKPOINT
|
||||
|
||||
#endif
|
||||
@@ -70,8 +71,10 @@
|
||||
#else
|
||||
|
||||
/* On non-debug builds, we never show these */
|
||||
#if defined (__STDC__)
|
||||
#define DPRINT1(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
|
||||
#define DPRINT(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)
|
||||
#endif
|
||||
#define CHECKPOINT1
|
||||
#define CHECKPOINT
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user