From 8fecd28c5a86095f10d77d84b1033d354d5b0f8c Mon Sep 17 00:00:00 2001 From: Paolo Carlini Date: Thu, 26 Jan 2006 23:39:33 +0000 Subject: [PATCH] std_bitset.h (bitset<>::_M_copy_to_string): Call the internal _Unchecked_set(size_t) instead of set. 2006-01-26 Paolo Carlini * include/std/std_bitset.h (bitset<>::_M_copy_to_string): Call the internal _Unchecked_set(size_t) instead of set. From-SVN: r110285 --- libstdc++-v3/ChangeLog | 5 +++++ libstdc++-v3/include/std/std_bitset.h | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 4fc4aa406d7..3d42332275f 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2006-01-26 Paolo Carlini + + * include/std/std_bitset.h (bitset<>::_M_copy_to_string): + Call the internal _Unchecked_set(size_t) instead of set. + 2006-01-26 Paolo Carlini * docs/html/install.html ([Tools you will need beforehand]): diff --git a/libstdc++-v3/include/std/std_bitset.h b/libstdc++-v3/include/std/std_bitset.h index ad47238ed62..bea36e28ea6 100644 --- a/libstdc++-v3/include/std/std_bitset.h +++ b/libstdc++-v3/include/std/std_bitset.h @@ -1,6 +1,7 @@ // -*- C++ -*- -// Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. +// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 +// Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -1157,7 +1158,7 @@ _GLIBCXX_BEGIN_NESTED_NAMESPACE(std, _GLIBCXX_STD) case '0': break; case '1': - set(__i - 1); + _Unchecked_set(__i - 1); break; default: __throw_invalid_argument(__N("bitset::_M_copy_from_string")); -- 2.30.2