DR 434.
DR 434. bitset::to_string() hard to use [Ready] * include/debug/bitset (to_string): Add three overloads, taking fewer template arguments. From-SVN: r99433
This commit is contained in:
parent
292c801888
commit
48cf14eb9a
@ -1,3 +1,9 @@
|
|||||||
|
2005-05-09 Jonathan Wakely <redi@gcc.gnu.org>
|
||||||
|
|
||||||
|
DR 434. bitset::to_string() hard to use [Ready]
|
||||||
|
* include/debug/bitset (to_string): Add three overloads, taking
|
||||||
|
fewer template arguments.
|
||||||
|
|
||||||
2005-05-04 Benjamin Kosnik <bkoz@redhat.com>
|
2005-05-04 Benjamin Kosnik <bkoz@redhat.com>
|
||||||
|
|
||||||
* acinclude.m4: Remove testsuite_wchar_t and testsuite_thread.
|
* acinclude.m4: Remove testsuite_wchar_t and testsuite_thread.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
// Debugging bitset implementation -*- C++ -*-
|
// Debugging bitset implementation -*- C++ -*-
|
||||||
|
|
||||||
// Copyright (C) 2003, 2004
|
// Copyright (C) 2003, 2004, 2005
|
||||||
// Free Software Foundation, Inc.
|
// Free Software Foundation, Inc.
|
||||||
//
|
//
|
||||||
// This file is part of the GNU ISO C++ Library. This library is free
|
// This file is part of the GNU ISO C++ Library. This library is free
|
||||||
@ -239,6 +239,28 @@ namespace __gnu_debug_def
|
|||||||
to_string() const
|
to_string() const
|
||||||
{ return _M_base().template to_string<_CharT, _Traits, _Allocator>(); }
|
{ return _M_base().template to_string<_CharT, _Traits, _Allocator>(); }
|
||||||
|
|
||||||
|
// _GLIBCXX_RESOLVE_LIB_DEFECTS
|
||||||
|
// 434. bitset::to_string() hard to use.
|
||||||
|
template<typename _CharT, typename _Traits>
|
||||||
|
std::basic_string<_CharT, _Traits, std::allocator<_CharT> >
|
||||||
|
to_string() const
|
||||||
|
{ return to_string<_CharT, _Traits, std::allocator<_CharT> >(); }
|
||||||
|
|
||||||
|
template<typename _CharT>
|
||||||
|
std::basic_string<_CharT, std::char_traits<_CharT>,
|
||||||
|
std::allocator<_CharT> >
|
||||||
|
to_string() const
|
||||||
|
{
|
||||||
|
return to_string<_CharT, std::char_traits<_CharT>,
|
||||||
|
std::allocator<_CharT> >();
|
||||||
|
}
|
||||||
|
|
||||||
|
std::basic_string<char, std::char_traits<char>, std::allocator<char> >
|
||||||
|
to_string() const
|
||||||
|
{
|
||||||
|
return to_string<char,std::char_traits<char>,std::allocator<char> >();
|
||||||
|
}
|
||||||
|
|
||||||
using _Base::count;
|
using _Base::count;
|
||||||
using _Base::size;
|
using _Base::size;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user