More parameter variable names fixed to make them more readable by replacing abbreviat...
[wxWidgets.git] / include / wx / debug.h
index c030f2abbaecf81f9da2f9153cf83dfc4df4fb7a..5f1e1559bb782cc15f1a1a0e52cfc820b8d392c2 100644 (file)
  */
 #define wxMAKE_UNIQUE_ASSERT_NAME2(text) wxCONCAT(wxAssert_, text)
 
-#ifdef __WATCOMC__
-    /* avoid "unused symbol" warning */
-    #define wxCOMPILE_TIME_ASSERT2(expr, msg, text) \
-        class wxMAKE_UNIQUE_ASSERT_NAME2(text) { \
-          unsigned int msg: expr; \
-          wxMAKE_UNIQUE_ASSERT_NAME2(text) { wxUnusedVar(msg); } \
-        }
-#else
-    #define wxCOMPILE_TIME_ASSERT2(expr, msg, text) \
-        struct wxMAKE_UNIQUE_ASSERT_NAME2(text) { unsigned int msg: expr; }
-#endif
+#define wxCOMPILE_TIME_ASSERT2(expr, msg, text) \
+    struct wxMAKE_UNIQUE_ASSERT_NAME2(text) { unsigned int msg: expr; }
 
 /*  helpers for wxCOMPILE_TIME_ASSERT below, for private use only */
 #define wxMAKE_BITSIZE_MSG(type, size) type ## SmallerThan ## size ## Bits