Return-Path: Delivered-To: apmail-incubator-stdcxx-commits-archive@www.apache.org Received: (qmail 67663 invoked from network); 23 Mar 2007 18:51:02 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 23 Mar 2007 18:51:02 -0000 Received: (qmail 34336 invoked by uid 500); 23 Mar 2007 18:51:09 -0000 Delivered-To: apmail-incubator-stdcxx-commits-archive@incubator.apache.org Received: (qmail 34327 invoked by uid 500); 23 Mar 2007 18:51:09 -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 34312 invoked by uid 99); 23 Mar 2007 18:51:09 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Mar 2007 11:51:09 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME 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; Fri, 23 Mar 2007 11:51:01 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 2E92D1A9838; Fri, 23 Mar 2007 11:50:41 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r521861 - /incubator/stdcxx/trunk/include/string Date: Fri, 23 Mar 2007 18:50:41 -0000 To: stdcxx-commits@incubator.apache.org From: sebor@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070323185041.2E92D1A9838@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sebor Date: Fri Mar 23 11:50:40 2007 New Revision: 521861 URL: http://svn.apache.org/viewvc?view=rev&rev=521861 Log: 2007-03-23 Martin Sebor STDCXX-368 * string (ctor): Removed unused function formal arguments from function declaration to silence gcc 3.2.3 warnings. Modified: incubator/stdcxx/trunk/include/string Modified: incubator/stdcxx/trunk/include/string URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/include/string?view=diff&rev=521861&r1=521860&r2=521861 ============================================================================== --- incubator/stdcxx/trunk/include/string (original) +++ incubator/stdcxx/trunk/include/string Fri Mar 23 11:50:40 2007 @@ -186,9 +186,8 @@ #endif // _RWSTD_NO_INLINE_MEMBER_TEMPLATES - basic_string (const_pointer __first, const_pointer __last, - const allocator_type &__alloc - _RWSTD_REDECLARED_DEFAULT(allocator_type ())); + basic_string (const_pointer, const_pointer, const allocator_type& + _RWSTD_REDECLARED_DEFAULT (allocator_type ())); ~basic_string () { _C_unlink (0);