Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 77647 invoked from network); 12 Mar 2007 17:34:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 12 Mar 2007 17:34:43 -0000 Received: (qmail 192 invoked by uid 500); 12 Mar 2007 17:34:51 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 134 invoked by uid 500); 12 Mar 2007 17:34:51 -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 123 invoked by uid 99); 12 Mar 2007 17:34:51 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Mar 2007 10:34:51 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [208.30.140.160] (HELO moroha.quovadx.com) (208.30.140.160) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Mar 2007 10:34:40 -0700 Received: from qxvcexch01.ad.quovadx.com ([192.168.170.59]) by moroha.quovadx.com (8.13.6/8.13.6) with ESMTP id l2CHYGOq026603 for ; Mon, 12 Mar 2007 17:34:16 GMT Received: from [10.70.3.113] ([10.70.3.113]) by qxvcexch01.ad.quovadx.com with Microsoft SMTPSVC(6.0.3790.1830); Mon, 12 Mar 2007 11:34:05 -0600 Message-ID: <45F58FB4.2010008@roguewave.com> Date: Mon, 12 Mar 2007 10:36:52 -0700 From: Martin Sebor Organization: Rogue Wave Software User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.2) Gecko/20070221 SeaMonkey/1.1.1 MIME-Version: 1.0 To: stdcxx-dev@incubator.apache.org Subject: Re: [Fwd: Re: svn commit: r511019 - in /incubator/stdcxx/trunk/tests: include/23.list.h src/23.containers.cpp] References: <7BDB2168BEAEF14C98F1901FD2DE64384E205C@epmsa009.minsk.epam.com> In-Reply-To: <7BDB2168BEAEF14C98F1901FD2DE64384E205C@epmsa009.minsk.epam.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 12 Mar 2007 17:34:05.0273 (UTC) FILETIME=[A1B94C90:01C764CC] X-Virus-Checked: Checked by ClamAV on apache.org Farid Zaripov wrote: >> -----Original Message----- >> From: Martin Sebor [mailto:sebor@roguewave.com] >> Sent: Monday, March 12, 2007 6:34 PM >> To: stdcxx-dev@incubator.apache.org >> Subject: [Fwd: Re: svn commit: r511019 - in >> /incubator/stdcxx/trunk/tests: include/23.list.h >> src/23.containers.cpp] >> >> Farid, please make sure to correct the static inline issue in >> this patch before we forget. > > Done: http://svn.apache.org/viewvc?view=rev&rev=517283 > >>> + const int equal = size_ == state.size_ >> It probably doesn't matter (I don't think any compiler issues >> a warning) but I suppose the type of the constant should be int. > > Do you mean that here should be bool instead of int, right? Yes, that's what I meant. Like I said, I'm not sure there's a compiler that complains about bool to int conversions (MSVC complains about going in the other direction which is annoying as heck but I don't think it complains about this -- yet). The main issue in this patch was the static inline since that as we know causes real problems. Martin