From: Chris Elliott Date: Tue, 2 Jan 2007 20:50:07 +0000 (+0000) Subject: fix errant __BORLAND__ see http://article.gmane.org/gmane.comp.lib.wxwidgets.devel... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ef1160a7dcc9065f5321a84c142cabcef9eb9df0 fix errant __BORLAND__ see http://article.gmane.org/gmane.comp.lib.wxwidgets.devel/70616/match=common+intl+cpp+problems+bcc git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44089 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/intl.cpp b/src/common/intl.cpp index 4be838e417..9a2dc00536 100644 --- a/src/common/intl.cpp +++ b/src/common/intl.cpp @@ -18,7 +18,7 @@ // headers // ---------------------------------------------------------------------------- -#if defined(__BORLAND__) && !defined(__WXDEBUG__) +#if defined(__BORLANDC__) && !defined(__WXDEBUG__) // There's a bug in Borland's compiler that breaks wxLocale with -O2, // so make sure that flag is not used for this file: #pragma option -O1