This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[v3] Document DR 853 [Ready in R60], as implemented


Hi,

committed to mainline.

Paolo.

////////////////
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.
Index: doc/xml/manual/intro.xml
===================================================================
*** doc/xml/manual/intro.xml	(revision 140633)
--- doc/xml/manual/intro.xml	(working copy)
***************
*** 708,713 ****
--- 708,719 ----
      </term>
      <listitem><para>In C++0x mode, remove the pow(complex&lt;T&gt;, int) signature.
      </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>
  
   </sect2>
Index: include/debug/bitset
===================================================================
*** include/debug/bitset	(revision 140633)
--- include/debug/bitset	(working copy)
*************** namespace __debug
*** 280,286 ****
          { return to_string<_CharT, _Traits, std::allocator<_CharT> >(); }
  
        // _GLIBCXX_RESOLVE_LIB_DEFECTS
!       // 396. what are characters zero and one.
        template<class _CharT, class _Traits>
  	std::basic_string<_CharT, _Traits, std::allocator<_CharT> >
  	to_string(_CharT __zero, _CharT __one = _CharT('1')) const
--- 280,286 ----
          { return to_string<_CharT, _Traits, std::allocator<_CharT> >(); }
  
        // _GLIBCXX_RESOLVE_LIB_DEFECTS
!       // 853. to_string needs updating with zero and one.
        template<class _CharT, class _Traits>
  	std::basic_string<_CharT, _Traits, std::allocator<_CharT> >
  	to_string(_CharT __zero, _CharT __one = _CharT('1')) const
Index: include/std/bitset
===================================================================
*** include/std/bitset	(revision 140633)
--- include/std/bitset	(working copy)
*************** _GLIBCXX_BEGIN_NESTED_NAMESPACE(std, _GL
*** 1070,1076 ****
  	{ return to_string<_CharT, _Traits, std::allocator<_CharT> >(); }
  
        // _GLIBCXX_RESOLVE_LIB_DEFECTS
!       // 396. what are characters zero and one.
        template<class _CharT, class _Traits>
  	std::basic_string<_CharT, _Traits, std::allocator<_CharT> >
  	to_string(_CharT __zero, _CharT __one = _CharT('1')) const
--- 1070,1076 ----
  	{ return to_string<_CharT, _Traits, std::allocator<_CharT> >(); }
  
        // _GLIBCXX_RESOLVE_LIB_DEFECTS
!       // 853. to_string needs updating with zero and one.
        template<class _CharT, class _Traits>
  	std::basic_string<_CharT, _Traits, std::allocator<_CharT> >
  	to_string(_CharT __zero, _CharT __one = _CharT('1')) const

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]