mirror of git://gcc.gnu.org/git/gcc.git
bitset: Adjust comment to reflect DR 853.
2008-09-24 Paolo Carlini <paolo.carlini@oracle.com> * include/std/bitset: Adjust comment to reflect DR 853. * include/debug/bitset: Likewise. * doc/xml/manual/intro.xml: Add an entry for DR 853. From-SVN: r140637
This commit is contained in:
parent
fbc2a50569
commit
19a6a2ea61
|
|
@ -1,3 +1,9 @@
|
||||||
|
2008-09-24 Paolo Carlini <paolo.carlini@oracle.com>
|
||||||
|
|
||||||
|
* include/std/bitset: Adjust comment to reflect DR 853.
|
||||||
|
* include/debug/bitset: Likewise.
|
||||||
|
* doc/xml/manual/intro.xml: Add an entry for DR 853.
|
||||||
|
|
||||||
2008-09-23 Paolo Carlini <paolo.carlini@oracle.com>
|
2008-09-23 Paolo Carlini <paolo.carlini@oracle.com>
|
||||||
|
|
||||||
Implement DR 396 [Ready].
|
Implement DR 396 [Ready].
|
||||||
|
|
|
||||||
|
|
@ -708,6 +708,12 @@
|
||||||
</term>
|
</term>
|
||||||
<listitem><para>In C++0x mode, remove the pow(complex<T>, int) signature.
|
<listitem><para>In C++0x mode, remove the pow(complex<T>, int) signature.
|
||||||
</para></listitem></varlistentry>
|
</para></listitem></varlistentry>
|
||||||
|
|
||||||
|
<varlistentry><term><ulink url="../ext/lwg-active.html#853">853</ulink>:
|
||||||
|
<emphasis>to_string needs updating with zero and one</emphasis>
|
||||||
|
</term>
|
||||||
|
<listitem><para>Update / add the signatures.
|
||||||
|
</para></listitem></varlistentry>
|
||||||
</variablelist>
|
</variablelist>
|
||||||
|
|
||||||
</sect2>
|
</sect2>
|
||||||
|
|
|
||||||
|
|
@ -280,7 +280,7 @@ namespace __debug
|
||||||
{ return to_string<_CharT, _Traits, std::allocator<_CharT> >(); }
|
{ return to_string<_CharT, _Traits, std::allocator<_CharT> >(); }
|
||||||
|
|
||||||
// _GLIBCXX_RESOLVE_LIB_DEFECTS
|
// _GLIBCXX_RESOLVE_LIB_DEFECTS
|
||||||
// 396. what are characters zero and one.
|
// 853. to_string needs updating with zero and one.
|
||||||
template<class _CharT, class _Traits>
|
template<class _CharT, class _Traits>
|
||||||
std::basic_string<_CharT, _Traits, std::allocator<_CharT> >
|
std::basic_string<_CharT, _Traits, std::allocator<_CharT> >
|
||||||
to_string(_CharT __zero, _CharT __one = _CharT('1')) const
|
to_string(_CharT __zero, _CharT __one = _CharT('1')) const
|
||||||
|
|
|
||||||
|
|
@ -1070,7 +1070,7 @@ _GLIBCXX_BEGIN_NESTED_NAMESPACE(std, _GLIBCXX_STD_D)
|
||||||
{ return to_string<_CharT, _Traits, std::allocator<_CharT> >(); }
|
{ return to_string<_CharT, _Traits, std::allocator<_CharT> >(); }
|
||||||
|
|
||||||
// _GLIBCXX_RESOLVE_LIB_DEFECTS
|
// _GLIBCXX_RESOLVE_LIB_DEFECTS
|
||||||
// 396. what are characters zero and one.
|
// 853. to_string needs updating with zero and one.
|
||||||
template<class _CharT, class _Traits>
|
template<class _CharT, class _Traits>
|
||||||
std::basic_string<_CharT, _Traits, std::allocator<_CharT> >
|
std::basic_string<_CharT, _Traits, std::allocator<_CharT> >
|
||||||
to_string(_CharT __zero, _CharT __one = _CharT('1')) const
|
to_string(_CharT __zero, _CharT __one = _CharT('1')) const
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue