Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 77467 invoked from network); 18 Oct 2007 16:33:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 18 Oct 2007 16:33:41 -0000 Received: (qmail 97581 invoked by uid 500); 18 Oct 2007 16:33:28 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 97569 invoked by uid 500); 18 Oct 2007 16:33:28 -0000 Mailing-List: contact stdcxx-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: stdcxx-dev@incubator.apache.org Delivered-To: mailing list stdcxx-dev@incubator.apache.org Received: (qmail 97558 invoked by uid 99); 18 Oct 2007 16:33:28 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Oct 2007 09:33:28 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of Farid_Zaripov@epam.com designates 217.21.63.3 as permitted sender) Received: from [217.21.63.3] (HELO EPMSA009.epam.com) (217.21.63.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Oct 2007 16:33:32 +0000 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: RE: status of fix for incompatibilities in exception classes on Windows Date: Thu, 18 Oct 2007 19:32:48 +0300 Message-ID: <7BDB2168BEAEF14C98F1901FD2DE64380117E9EC@epmsa009.minsk.epam.com> In-Reply-To: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: status of fix for incompatibilities in exception classes on Windows Thread-Index: AcgRnst2ZJU9p1b2Sq6prpsYh2ml+AABGFUgAABJOLA= References: <47178091.9080406@roguewave.com> From: "Farid Zaripov" To: X-Virus-Checked: Checked by ClamAV on apache.org > -----Original Message----- > From: Travis Vitek [mailto:tvitek@roguewave.com]=20 > Sent: Thursday, October 18, 2007 7:24 PM > To: stdcxx-dev@incubator.apache.org > Subject: RE: status of fix for incompatibilities in exception=20 > classes on Windows >=20 >=20 > I totally forgot about it after scrambling to get the other=20 > patch made last night. I'll post a patch for review ASAP. > =20 >=20 > >-----Original Message----- > >From: Martin Sebor [mailto:sebor@roguewave.com] > >Sent: Thursday, October 18, 2007 8:50 AM > >To: stdcxx-dev@incubator.apache.org > >Subject: status of fix for incompatibilities in exception classes on=20 > >Windows > > > >What is the status of the patch for the unsats for the exception=20 > >classes on Windows? Anyone working on it? Farid? Travis? > > > >Martin The patch is very simple: Index: _config-msvcrt.h =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- _config-msvcrt.h (revision 586020) +++ _config-msvcrt.h (working copy) @@ -219,3 +219,18 @@ typedef unsigned short wchar_t; =20 #endif // _NATIVE_WCHAR_T_DEFINED + +#if 5 <=3D _RWSTD_VER_MAJOR + // defined for binary compatibility with stdcxx 4.1.x +# define _RWSTD_NO_BAD_CAST_ASSIGNMENT +# define _RWSTD_NO_BAD_CAST_COPY_CTOR +# define _RWSTD_NO_BAD_CAST_DTOR +# define _RWSTD_NO_BAD_TYPEID_ASSIGNMENT +# define _RWSTD_NO_BAD_TYPEID_COPY_CTOR +# define _RWSTD_NO_BAD_TYPEID_DTOR +# define _RWSTD_NO_EXCEPTION_ASSIGNMENT +# define _RWSTD_NO_EXCEPTION_COPY_CTOR +# define _RWSTD_NO_EXCEPTION_DEFAULT_CTOR +# define _RWSTD_NO_EXCEPTION_DTOR +# define _RWSTD_NO_EXCEPTION_WHAT +#endif // 5 <=3D stdcxx version Farid.