Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 88678 invoked from network); 24 Jul 2007 14:27:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 24 Jul 2007 14:27:54 -0000 Received: (qmail 81546 invoked by uid 500); 24 Jul 2007 14:27:54 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 81522 invoked by uid 500); 24 Jul 2007 14:27:54 -0000 Mailing-List: contact stdcxx-dev-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-dev@incubator.apache.org Received: (qmail 81380 invoked by uid 99); 24 Jul 2007 14:27:54 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Jul 2007 07:27:53 -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.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Jul 2007 07:27:52 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 1A6F77141F8 for ; Tue, 24 Jul 2007 07:27:32 -0700 (PDT) Message-ID: <16474095.1185287252106.JavaMail.jira@brutus> Date: Tue, 24 Jul 2007 07:27:32 -0700 (PDT) From: "Farid Zaripov (JIRA)" To: stdcxx-dev@incubator.apache.org Subject: [jira] Issue Comment Edited: (STDCXX-497) [MSVC 7.1] std::num_put bad formatting of 0.0 with precision and showpoint In-Reply-To: <25780515.1185239071495.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/STDCXX-497?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12514978 ] Farid Zaripov edited comment on STDCXX-497 at 7/24/07 7:27 AM: --------------------------------------------------------------- Already confirmed: https://issues.apache.org/jira/browse/STDCXX-2. was: Already confirmed (see https://issues.apache.org/jira/browse/STDCXX-2). > [MSVC 7.1] std::num_put bad formatting of 0.0 with precision and showpoint > -------------------------------------------------------------------------- > > Key: STDCXX-497 > URL: https://issues.apache.org/jira/browse/STDCXX-497 > Project: C++ Standard Library > Issue Type: Bug > Affects Versions: 4.1.3 > Environment: MSVC 7.1 > Reporter: Martin Sebor > Assignee: Farid Zaripov > > Moved from Rogue Wave Bugzilla: http://bugzilla.cvo.roguewave.com/show_bug.cgi?id=1550 > $ cat t.cpp && cl -D_RWCONFIG=11s_msvc_7_1 > -Ic:/contrib/cygwin/build/sebor/dev-hal/include > -I./../../../../include > -Ic:/contrib/cygwin/build/sebor/dev-hal/examples/stdlib/manual/../include > -Ic:/contrib/cygwin/build/sebor/dev-hal/include/ansi -I./../../../.. > -Ic:/contrib/cygwin/build/sebor/dev-hal > -Ic:/contrib/cygwin/build/sebor/dev-hal/examples/stdlib/manual -I. > -nologo -GX -MLd -W3 -Zi -GA -GR -GF -GZ -c t.cpp && link -nologo > /NODEFAULTLIB:libcpd /debug /LIBPATH:./../../../../lib /OUT:t.exe > t.obj std11s_msvc_7_1.lib user32.lib > t.cpp && ./t.exe > #include > #include > int main () > { > std::ostringstream strm; > strm.setf (strm.showpoint); > strm.precision (2); > strm << 0.0; > assert ("0.0" == strm.str ()); > } > Assertion failed: "0.0" == strm.str (), file t.cpp, line 13 -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.