Return-Path: Delivered-To: apmail-stdcxx-dev-archive@www.apache.org Received: (qmail 43697 invoked from network); 10 Jul 2008 15:50:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 10 Jul 2008 15:50:59 -0000 Received: (qmail 79400 invoked by uid 500); 10 Jul 2008 15:50:39 -0000 Delivered-To: apmail-stdcxx-dev-archive@stdcxx.apache.org Received: (qmail 79388 invoked by uid 500); 10 Jul 2008 15:50:39 -0000 Mailing-List: contact dev-help@stdcxx.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@stdcxx.apache.org Delivered-To: mailing list dev@stdcxx.apache.org Received: (qmail 79376 invoked by uid 99); 10 Jul 2008 15:50:39 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Jul 2008 08:50:39 -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: local policy) Received: from [208.30.140.160] (HELO moroha.roguewave.com) (208.30.140.160) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Jul 2008 15:49:47 +0000 Received: from exchmail01.Blue.Roguewave.Com (exchmail01.blue.roguewave.com [10.22.129.22]) by moroha.roguewave.com (8.13.6/8.13.6) with ESMTP id m6AFo9V7003564 for ; Thu, 10 Jul 2008 15:50:09 GMT 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: svn commit: r675315 - /stdcxx/branches/4.2.x/tests/utilities/20.operators.cpp Date: Thu, 10 Jul 2008 09:50:11 -0600 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: svn commit: r675315 - /stdcxx/branches/4.2.x/tests/utilities/20.operators.cpp Thread-Index: AcjiPzQjYj8ex0juQVuS8OY/jNn3HgAYoB0gAACMlSA= References: <20080709191657.157DA238896E@eris.apache.org> <4875835F.2040201@roguewave.com> From: "Eric Lemings" To: X-Virus-Checked: Checked by ClamAV on apache.org =20 I double-checked on RH5 and HP-UX. Looks good to me. What error did you get? Brad. > -----Original Message----- > From: Eric Lemings [mailto:Eric.Lemings@roguewave.com]=20 > Sent: Thursday, July 10, 2008 9:30 AM > To: dev@stdcxx.apache.org > Subject: RE: svn commit: r675315 -=20 > /stdcxx/branches/4.2.x/tests/utilities/20.operators.cpp >=20 > =20 > I did debug and optimize builds on RH5, Sol10, and HP-UX=20 > 11.31 and they > all built fine (unless I overlooked something). >=20 > Will double-check. >=20 > Brad. >=20 > > -----Original Message----- > > From: Martin Sebor [mailto:msebor@gmail.com] On Behalf Of=20 > Martin Sebor > > Sent: Wednesday, July 09, 2008 9:35 PM > > To: dev@stdcxx.apache.org > > Subject: Re: svn commit: r675315 -=20 > > /stdcxx/branches/4.2.x/tests/utilities/20.operators.cpp > >=20 > > elemings@apache.org wrote: > > > Author: elemings > > > Date: Wed Jul 9 12:16:56 2008 > > > New Revision: 675315 > > >=20 > > > URL: http://svn.apache.org/viewvc?rev=3D675315&view=3Drev > > > Log: > > > 2008-07-09 Eric Lemings > > >=20 > > > STDCXX-550 > > > * tests/utilities/20.operators.cpp=20 > > (test_random_access_iterator): > > > Oops. Should be `!defined' in #if directive. > > >=20 > > >=20 > > > Modified: > > > stdcxx/branches/4.2.x/tests/utilities/20.operators.cpp > > >=20 > > > Modified: stdcxx/branches/4.2.x/tests/utilities/20.operators.cpp > > > URL:=20 > > http://svn.apache.org/viewvc/stdcxx/branches/4.2.x/tests/utili > > = ties/20.operators.cpp?rev=3D675315&r1=3D675314&r2=3D675315&view=3Ddiff > > >=20 > > = =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=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > > > --- stdcxx/branches/4.2.x/tests/utilities/20.operators.cpp=20 > > (original) > > > +++ stdcxx/branches/4.2.x/tests/utilities/20.operators.cpp=20 > > Wed Jul 9 12:16:56 2008 > > > @@ -397,7 +397,7 @@ > > > =20 > > > typedef RandomAccessIterator I; > > > =20 > > > -#if defined _RWSTD_NO_DEBUG_ITER > > > +#if !defined _RWSTD_NO_DEBUG_ITER > > > RandomNumberGenerator rndgen; > >=20 > > This won't compile when RandomAccessIterator is a plain pointer, > > which both string::iterator and vector::iterator happen to be > > when _RWSTD_NO_DEBUG_ITER is #defined (i.e., with optimization). > >=20 > > Martin > >=20 > >=20 >=20