Return-Path: Delivered-To: apmail-incubator-stdcxx-commits-archive@www.apache.org Received: (qmail 23347 invoked from network); 15 Oct 2007 15:32:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 15 Oct 2007 15:32:55 -0000 Received: (qmail 17009 invoked by uid 500); 15 Oct 2007 15:32:43 -0000 Delivered-To: apmail-incubator-stdcxx-commits-archive@incubator.apache.org Received: (qmail 16999 invoked by uid 500); 15 Oct 2007 15:32:43 -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 16988 invoked by uid 99); 15 Oct 2007 15:32:43 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Oct 2007 08:32:43 -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; Mon, 15 Oct 2007 15:32:54 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 976D21A9832; Mon, 15 Oct 2007 08:32:04 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r584805 - /incubator/stdcxx/branches/4.2.0/include/rw/_ioinsert.cc Date: Mon, 15 Oct 2007 15:32:04 -0000 To: stdcxx-commits@incubator.apache.org From: faridz@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071015153204.976D21A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: faridz Date: Mon Oct 15 08:32:02 2007 New Revision: 584805 URL: http://svn.apache.org/viewvc?rev=584805&view=rev Log: 2007-10-15 Farid Zaripov STDCXX-206 * _ioinsert.cc (__rw_insert): Corrected #ifndef to #ifdef. Modified: incubator/stdcxx/branches/4.2.0/include/rw/_ioinsert.cc Modified: incubator/stdcxx/branches/4.2.0/include/rw/_ioinsert.cc URL: http://svn.apache.org/viewvc/incubator/stdcxx/branches/4.2.0/include/rw/_ioinsert.cc?rev=584805&r1=584804&r2=584805&view=diff ============================================================================== --- incubator/stdcxx/branches/4.2.0/include/rw/_ioinsert.cc (original) +++ incubator/stdcxx/branches/4.2.0/include/rw/_ioinsert.cc Mon Oct 15 08:32:02 2007 @@ -170,7 +170,7 @@ else { __err = _STD::ios_base::badbit; -#ifndef _RWSTD_NO_EXT_KEEP_WIDTH_ON_FAILURE +#ifdef _RWSTD_NO_EXT_KEEP_WIDTH_ON_FAILURE __strm.width (0); #endif // _RWSTD_NO_EXT_KEEP_WIDTH_ON_FAILURE }