Index: Source/wtf/Assertions.h |
diff --git a/Source/wtf/Assertions.h b/Source/wtf/Assertions.h |
index 2c623a24d0b1f1a5c34ae04daddf197dadb80441..44bb711278ae15d8530345302e427e653cab8ac8 100644 |
--- a/Source/wtf/Assertions.h |
+++ b/Source/wtf/Assertions.h |
@@ -225,7 +225,7 @@ WTF_EXPORT_PRIVATE void WTFInstallReportBacktraceOnCrashHook(); |
#define ASSERT_NOT_REACHED() ((void)0) |
#define NO_RETURN_DUE_TO_ASSERT |
-#if COMPILER(INTEL) && !OS(WINDOWS) || COMPILER(RVCT) |
+#if COMPILER(INTEL) && !OS(WINDOWS) |
template<typename T> |
inline void assertUnused(T& x) { (void)x; } |
#define ASSERT_UNUSED(variable, assertion) (assertUnused(variable)) |
@@ -300,7 +300,7 @@ while (0) |
#if COMPILER(MSVC7_OR_LOWER) |
#define ASSERT_WITH_MESSAGE_UNUSED(variable, assertion) ((void)0) |
#elif ASSERT_MSG_DISABLED |
-#if COMPILER(INTEL) && !OS(WINDOWS) || COMPILER(RVCT) |
+#if COMPILER(INTEL) && !OS(WINDOWS) |
template<typename T> |
inline void assertWithMessageUnused(T& x) { (void)x; } |
#define ASSERT_WITH_MESSAGE_UNUSED(variable, assertion, ...) (assertWithMessageUnused(variable)) |