fix for HAVE_EXPLICIT for VC++ 6.0 (closes bug 651314)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18493 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2003-01-01 22:58:53 +00:00
parent 65ca8c0b79
commit 9112af3fd1

View File

@@ -231,7 +231,7 @@ typedef int wxWindowID;
// check for explicit keyword support // check for explicit keyword support
#ifndef HAVE_EXPLICIT #ifndef HAVE_EXPLICIT
#if defined(__VISUALC__) && (__VISUALC__ > 1200) #if defined(__VISUALC__) && (__VISUALC__ >= 1200)
// VC++ 6.0 has explicit (what about the earlier versions?) // VC++ 6.0 has explicit (what about the earlier versions?)
#define HAVE_EXPLICIT #define HAVE_EXPLICIT
#elif defined(__BORLANDC__) && (__BORLANDC__ >= 0x0520) #elif defined(__BORLANDC__) && (__BORLANDC__ >= 0x0520)