From 9112af3fd181ff46861d7f5923eaeba7ec547dcb Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 1 Jan 2003 22:58:53 +0000 Subject: [PATCH] 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 --- include/wx/defs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/defs.h b/include/wx/defs.h index 1a8b26dc3b..3ee16b9c2f 100644 --- a/include/wx/defs.h +++ b/include/wx/defs.h @@ -231,7 +231,7 @@ typedef int wxWindowID; // check for explicit keyword support #ifndef HAVE_EXPLICIT - #if defined(__VISUALC__) && (__VISUALC__ > 1200) + #if defined(__VISUALC__) && (__VISUALC__ >= 1200) // VC++ 6.0 has explicit (what about the earlier versions?) #define HAVE_EXPLICIT #elif defined(__BORLANDC__) && (__BORLANDC__ >= 0x0520) -- 2.45.2