From stdcxx-commits-return-1976-apmail-incubator-stdcxx-commits-archive=incubator.apache.org@incubator.apache.org Thu Oct 18 22:40:43 2007 Return-Path: Delivered-To: apmail-incubator-stdcxx-commits-archive@www.apache.org Received: (qmail 16656 invoked from network); 18 Oct 2007 22:40:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 18 Oct 2007 22:40:43 -0000 Received: (qmail 53347 invoked by uid 500); 18 Oct 2007 22:40:30 -0000 Delivered-To: apmail-incubator-stdcxx-commits-archive@incubator.apache.org Received: (qmail 53326 invoked by uid 500); 18 Oct 2007 22:40:30 -0000 Mailing-List: contact stdcxx-commits-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-commits@incubator.apache.org Received: (qmail 53275 invoked by uid 99); 18 Oct 2007 22:40:30 -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 15:40:30 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 Oct 2007 22:40:41 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id DB7B11A9832; Thu, 18 Oct 2007 15:40:20 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r586162 - /incubator/stdcxx/branches/4.2.0/include/string Date: Thu, 18 Oct 2007 22:40:20 -0000 To: stdcxx-commits@incubator.apache.org From: sebor@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071018224020.DB7B11A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sebor Date: Thu Oct 18 15:40:10 2007 New Revision: 586162 URL: http://svn.apache.org/viewvc?rev=586162&view=rev Log: 2007-10-18 Martin Sebor * string (__replace_aux): Made member function template public as intended (but not actually done) in rev 586118 to get HP aCC 3 and 5 to compile the code again (and to restore the solution implemented for STDCXX-271). Modified: incubator/stdcxx/branches/4.2.0/include/string Modified: incubator/stdcxx/branches/4.2.0/include/string URL: http://svn.apache.org/viewvc/incubator/stdcxx/branches/4.2.0/include/string?rev=586162&r1=586161&r2=586162&view=diff ============================================================================== --- incubator/stdcxx/branches/4.2.0/include/string (original) +++ incubator/stdcxx/branches/4.2.0/include/string Thu Oct 18 15:40:10 2007 @@ -511,13 +511,13 @@ #else +public: + template basic_string& __replace_aux (iterator __first1, iterator __last1, _InputIter __first2, _InputIter __last2) { return __rw_replace_aux (*this, __first1, __last1, __first2, __last2); } - -public: #endif // _RWSTD_NO_STRING_OUTLINED_MEMBER_TEMPLATES