X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/16cba29d3a5a0a95b367382311a4a7a9a9833210..024026be1dddaa0acf1360dc9a3847fd671de7a0:/include/wx/debug.h diff --git a/include/wx/debug.h b/include/wx/debug.h index f6f3242e95..c2fc985ec2 100644 --- a/include/wx/debug.h +++ b/include/wx/debug.h @@ -198,7 +198,7 @@ It may be used both within a function and in the global scope. */ -#ifdef __WATCOMC__ +#if defined(__WATCOMC__) && defined(__cplusplus) /* avoid "unused symbol" warning */ #define wxCOMPILE_TIME_ASSERT(expr, msg) \ class wxMAKE_UNIQUE_ASSERT_NAME { \ @@ -240,7 +240,8 @@ it always returns false in other cases. */ #ifdef __cplusplus - #if defined(__WXMAC__) || defined(__WXMSW__) + /* ABX: check __WIN32__ instead of __WXMSW__ for the same MSWBase in any Win32 port */ + #if defined(__WXMAC__) || defined(__WIN32__) extern bool WXDLLIMPEXP_BASE wxIsDebuggerRunning(); #else /* !Mac */ inline bool wxIsDebuggerRunning() { return false; } @@ -248,4 +249,3 @@ #endif /* __cplusplus */ #endif /* _WX_DEBUG_H_ */ -