Changeset 1610 for code/branches/core3/src/util
- Timestamp:
- Jun 19, 2008, 4:10:27 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core3/src/util/Debug.h
r1593 r1610 86 86 87 87 #if ORX_HARD_DEBUG_LEVEL >= ORX_NONE 88 #define COUT0 88 #define COUT0 \ 89 89 (getSoftDebugLevel() < ORX_NONE) ? COUT_EXEC(0) : COUT_EXEC(0) 90 90 #else … … 94 94 95 95 #if ORX_HARD_DEBUG_LEVEL >= ORX_ERROR 96 #define COUT1 96 #define COUT1 \ 97 97 (getSoftDebugLevel() < ORX_ERROR) ? COUT_EXEC(1) : COUT_EXEC(1) 98 98 #else … … 170 170 171 171 #if ORX_HARD_DEBUG_LEVEL >= ORX_NONE 172 #define CCOUT0 172 #define CCOUT0 \ 173 173 (getSoftDebugLevel() < ORX_NONE) ? COUT_EXEC(0) : CCOUT_EXEC(0) 174 174 #else … … 178 178 179 179 #if ORX_HARD_DEBUG_LEVEL >= ORX_ERROR 180 #define CCOUT1 180 #define CCOUT1 \ 181 181 (getSoftDebugLevel() < ORX_ERROR) ? COUT_EXEC(1) : CCOUT_EXEC(1) 182 182 #else
Note: See TracChangeset
for help on using the changeset viewer.