Return-Path: Delivered-To: apmail-stdcxx-dev-archive@www.apache.org Received: (qmail 73854 invoked from network); 2 Jun 2008 19:31:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Jun 2008 19:31:01 -0000 Received: (qmail 84773 invoked by uid 500); 2 Jun 2008 19:31:04 -0000 Delivered-To: apmail-stdcxx-dev-archive@stdcxx.apache.org Received: (qmail 84710 invoked by uid 500); 2 Jun 2008 19:31:04 -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 84699 invoked by uid 99); 2 Jun 2008 19:31:04 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Jun 2008 12:31:04 -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; Mon, 02 Jun 2008 19:30:15 +0000 Received: from nebula.bco.roguewave.com ([10.70.3.27]) by moroha.roguewave.com (8.13.6/8.13.6) with ESMTP id m52JUVF1019049 for ; Mon, 2 Jun 2008 19:30:31 GMT Message-ID: <48444A57.1080908@roguewave.com> Date: Mon, 02 Jun 2008 13:30:31 -0600 From: Martin Sebor Organization: Rogue Wave Software, Inc. User-Agent: Thunderbird 2.0.0.12 (X11/20080226) MIME-Version: 1.0 To: dev@stdcxx.apache.org Subject: Re: svn commit: r662525 - /stdcxx/branches/4.2.x/util/collate.cpp References: <20080602192424.C0C0A2388A06@eris.apache.org> In-Reply-To: <20080602192424.C0C0A2388A06@eris.apache.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org elemings@apache.org wrote: > Author: elemings > Date: Mon Jun 2 12:24:24 2008 > New Revision: 662525 > > URL: http://svn.apache.org/viewvc?rev=662525&view=rev > Log: > 2008-06-02 Eric Lemings > > STDCXX-550 > * util/collate.cpp (Def::preprocess_collation_definitions): > Remove `typename' keyword. Some compilers don't like it outside > of templates. You might want to use EDG eccp to check the conformance of your changes before committing them. Both the compiler and our implementation (when using the front end) enforce strict correctness and portability. Martin > > > Modified: > stdcxx/branches/4.2.x/util/collate.cpp > > Modified: stdcxx/branches/4.2.x/util/collate.cpp > URL: http://svn.apache.org/viewvc/stdcxx/branches/4.2.x/util/collate.cpp?rev=662525&r1=662524&r2=662525&view=diff > ============================================================================== > --- stdcxx/branches/4.2.x/util/collate.cpp (original) > +++ stdcxx/branches/4.2.x/util/collate.cpp Mon Jun 2 12:24:24 2008 > @@ -250,7 +250,7 @@ > csm_it->second = coll_value++; > } > > - static typename token_list_t::size_type max_orders = 0; > + static token_list_t::size_type max_orders = 0; > > std::list::iterator s_it = section_list_.begin (); > > >