Return-Path: Delivered-To: apmail-stdcxx-commits-archive@www.apache.org Received: (qmail 88848 invoked from network); 16 Jun 2008 20:22:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 16 Jun 2008 20:22:27 -0000 Received: (qmail 5079 invoked by uid 500); 16 Jun 2008 20:22:29 -0000 Delivered-To: apmail-stdcxx-commits-archive@stdcxx.apache.org Received: (qmail 5060 invoked by uid 500); 16 Jun 2008 20:22:29 -0000 Mailing-List: contact commits-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 commits@stdcxx.apache.org Received: (qmail 5051 invoked by uid 99); 16 Jun 2008 20:22:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Jun 2008 13:22:29 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Jun 2008 20:21:48 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 52FC023889BA; Mon, 16 Jun 2008 13:21:36 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r668289 - /stdcxx/branches/4.3.x/include/rw/_forward.h Date: Mon, 16 Jun 2008 20:21:36 -0000 To: commits@stdcxx.apache.org From: elemings@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080616202136.52FC023889BA@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: elemings Date: Mon Jun 16 13:21:35 2008 New Revision: 668289 URL: http://svn.apache.org/viewvc?rev=668289&view=rev Log: 2008-06-16 Eric Lemings STDCXX-958 * include/rw/_forward.h (std::identity::operator()): Add missing `const' to function signature. Modified: stdcxx/branches/4.3.x/include/rw/_forward.h Modified: stdcxx/branches/4.3.x/include/rw/_forward.h URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/include/rw/_forward.h?rev=668289&r1=668288&r2=668289&view=diff ============================================================================== --- stdcxx/branches/4.3.x/include/rw/_forward.h (original) +++ stdcxx/branches/4.3.x/include/rw/_forward.h Mon Jun 16 13:21:35 2008 @@ -65,7 +65,7 @@ * @param __x An value convertible to identity type. * @returns Same value as the function argument with identity type. */ - const _Type& operator() (const _Type& __x) { + const _Type& operator() (const _Type& __x) const { return __x; } };