From: Mattia Barbon Date: Sat, 17 Jan 2004 22:34:51 +0000 (+0000) Subject: Compilation fix for MSVC 6 and wxUSE_STL=1. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/9ee7c8d670199d5f0ad89f7104f99e54ed9c2ceb Compilation fix for MSVC 6 and wxUSE_STL=1. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25218 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/string.h b/include/wx/string.h index eed7c84c39..3713e7b095 100644 --- a/include/wx/string.h +++ b/include/wx/string.h @@ -183,7 +183,7 @@ inline const wxString& wxGetEmptyString() { return *(wxString *)&wxEmptyString; #endif #if (defined(__GNUG__) && (__GNUG__ < 3)) || \ - (defined(_MSC_VER) && (_MSC_VER <= 1100)) + (defined(_MSC_VER) && (_MSC_VER <= 1200)) #define wxSTRING_BASE_HASNT_CLEAR #endif