From stdcxx-dev-return-1210-apmail-incubator-stdcxx-dev-archive=incubator.apache.org@incubator.apache.org Thu Apr 20 22:45:09 2006 Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 96973 invoked from network); 20 Apr 2006 22:45:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 20 Apr 2006 22:45:09 -0000 Received: (qmail 19171 invoked by uid 500); 20 Apr 2006 22:45:09 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 19116 invoked by uid 500); 20 Apr 2006 22:45:08 -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 19105 invoked by uid 99); 20 Apr 2006 22:45:08 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Apr 2006 15:45:08 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [209.237.227.198] (HELO brutus.apache.org) (209.237.227.198) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Apr 2006 15:45:08 -0700 Received: from brutus (localhost.localdomain [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id BCB8D41000B for ; Thu, 20 Apr 2006 22:44:05 +0000 (GMT) Message-ID: <10780914.1145573045764.JavaMail.jira@brutus> Date: Thu, 20 Apr 2006 22:44:05 +0000 (GMT+00:00) From: "Martin Sebor (JIRA)" To: stdcxx-dev@incubator.apache.org Subject: [jira] Created: (STDCXX-174) [MSVC/Win64] std::bitset::count() returns wrong value MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [MSVC/Win64] std::bitset::count() returns wrong value ----------------------------------------------------- Key: STDCXX-174 URL: http://issues.apache.org/jira/browse/STDCXX-174 Project: C++ Standard Library Type: Bug Components: 23. Containers Versions: 4.1.3 Environment: MSVC/Win64 Reporter: Martin Sebor Assigned to: Martin Sebor Fix For: 4.1.4 When compiled with MSVC on Win64 the program below aborts at runtime. $ cat bitset.cpp && nmake bitset.exe #include #include int main () { std::bitset<1> b; b = ~b; assert (1 == b.count ()); } Microsoft (R) Program Maintenance Utility Version 8.00.50727.42 Copyright (C) Microsoft Corporation. All rights reserved. cl -D_RWCONFIG=12d -Ic:\build\sebor\stdlib-4.1.4\examples\stdlib\manual/../include -I.\..\..\..\../include -Ic:\build\sebor\stdlib-4.1.4/include -Ic:/build/sebor/stdlib-4.1.4/include/ansi -I.\..\..\..\.. -Ic:\build\sebor\stdlib-4.1.4 -Ic:\build\sebor\stdlib-4.1.4\examples\stdlib\manual -nologo -EHsc -MD -W3 -O2 -GR -c c:\build\sebor\stdlib-4.1.4\examples\stdlib\manual\bitset.cpp bitset.cpp link -nologo /NODEFAULTLIB:msvcprt /LIBPATH:.\..\..\..\..\lib /OUT:bitset.exe bitset.obj std12d.lib user32.lib C:\build\sebor\stdlib-4.1.4-build\examples\stdlib\manual\12d>bitset.exe Assertion failed: 1 == b.count (), file c:\build\sebor\stdlib-4.1.4\examples\stdlib\manual\bitset.cpp, line 8 This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira