From 9ee7c8d670199d5f0ad89f7104f99e54ed9c2ceb Mon Sep 17 00:00:00 2001 From: Mattia Barbon Date: Sat, 17 Jan 2004 22:34:51 +0000 Subject: [PATCH] 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 --- include/wx/string.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.50.0