Changed DebugLevel*Fn macros for VC++
This commit is contained in:
parent
c3846c63e7
commit
b17d5a4e72
1 changed files with 4 additions and 4 deletions
|
@ -202,10 +202,10 @@
|
|||
#define DebugLevel1(args) do { fprintf(stdout,args); } while(0)
|
||||
#define DebugLevel2(args) do { fprintf(stdout,args); } while(0)
|
||||
#define DebugLevel3(args) /* TURNED OFF: do { fprintf(stdout,args); } while(0) */
|
||||
#define DebugLevel0Fn(args) do { fprintf(stdout,__FUNCTION__ ": " args); } while(0)
|
||||
#define DebugLevel1Fn(args) do { fprintf(stdout,__FUNCTION__ ": " args); } while(0)
|
||||
#define DebugLevel2Fn(args) do { fprintf(stdout,__FUNCTION__ ": " args); } while(0)
|
||||
#define DebugLevel3Fn(args) /* TURNED OFF: do { fprintf(stdout,__FUNCTION__); fprintf(stdout,args); } while(0) */
|
||||
#define DebugLevel0Fn(args) do { fprintf(stdout, "%s:%d: ", __FILE__, __LINE__); fprintf(stdout,args); } while(0)
|
||||
#define DebugLevel1Fn(args) do { fprintf(stdout, "%s:%d: ", __FILE__, __LINE__); fprintf(stdout,args); } while(0)
|
||||
#define DebugLevel2Fn(args) do { fprintf(stdout, "%s:%d: ", __FILE__, __LINE__); fprintf(stdout,args); } while(0)
|
||||
#define DebugLevel3Fn(args) /* TURNED OFF: do { fprintf(stdout, "%s:%d: ", __FILE__, __LINE__); fprintf(stdout,args); } while(0) */
|
||||
|
||||
#endif // } !__GNUC__
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue