Changeset 48629 in webkit for trunk/JavaScriptCore/wtf/Assertions.h
- Timestamp:
- Sep 22, 2009, 5:57:53 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/Assertions.h
r45907 r48629 145 145 146 146 #define ASSERT(assertion) ((void)0) 147 #if COMPILER(MSVC7) 148 #define ASSERT_WITH_MESSAGE(assertion) ((void)0) 149 #else 147 150 #define ASSERT_WITH_MESSAGE(assertion, ...) ((void)0) 151 #endif /* COMPILER(MSVC7) */ 148 152 #define ASSERT_NOT_REACHED() ((void)0) 149 153 #define ASSERT_UNUSED(variable, assertion) ((void)variable) … … 200 204 /* FATAL */ 201 205 202 #if FATAL_DISABLED 206 #if FATAL_DISABLED && !COMPILER(MSVC7) 203 207 #define FATAL(...) ((void)0) 204 208 #elif COMPILER(MSVC7) … … 213 217 /* LOG_ERROR */ 214 218 215 #if ERROR_DISABLED 219 #if ERROR_DISABLED && !COMPILER(MSVC7) 216 220 #define LOG_ERROR(...) ((void)0) 217 221 #elif COMPILER(MSVC7) … … 223 227 /* LOG */ 224 228 225 #if LOG_DISABLED 229 #if LOG_DISABLED && !COMPILER(MSVC7) 226 230 #define LOG(channel, ...) ((void)0) 227 231 #elif COMPILER(MSVC7) … … 235 239 /* LOG_VERBOSE */ 236 240 237 #if LOG_DISABLED 241 #if LOG_DISABLED && !COMPILER(MSVC7) 238 242 #define LOG_VERBOSE(channel, ...) ((void)0) 239 243 #elif COMPILER(MSVC7)
Note:
See TracChangeset
for help on using the changeset viewer.