From: Vadim Zeitlin Date: Sun, 8 Sep 2002 12:55:37 +0000 (+0000) Subject: define HAVE_EXPLICIT for BC++ >= 0x520 X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/cabf185cd2f214e2c54c7365b7d66be6880f1638 define HAVE_EXPLICIT for BC++ >= 0x520 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@17081 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/defs.h b/include/wx/defs.h index cf9dd6d064..f0ce9ccc28 100644 --- a/include/wx/defs.h +++ b/include/wx/defs.h @@ -231,11 +231,14 @@ typedef int wxWindowID; // check for explicit keyword support #ifndef HAVE_EXPLICIT - // VC++ 6.0 has explicit (what about the earlier versions?) #if defined(__VISUALC__) && (__VISUALC__ > 1200) + // VC++ 6.0 has explicit (what about the earlier versions?) + #define HAVE_EXPLICIT + #elif defined(__BORLANDC__) && (__BORLANDC__ >= 0x0520) + // BC++ 4.52 doesn't support explicit, CBuilder 1 does #define HAVE_EXPLICIT - // Metrowerks CW6 or higher has explicit #elif defined(__MWERKS__) && (__MWERKS__ >= 0x2400) + // Metrowerks CW6 or higher has explicit #define HAVE_EXPLICIT #endif #endif // !HAVE_EXPLICIT