PR libstdc++/38244 (cont, debug bits)
authorPaolo Carlini <paolo.carlini@oracle.com>
Mon, 24 Nov 2008 11:19:39 +0000 (11:19 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Mon, 24 Nov 2008 11:19:39 +0000 (11:19 +0000)
2008-11-24  Paolo Carlini  <paolo.carlini@oracle.com>

PR libstdc++/38244 (cont, debug bits)
* include/debug/bitset (bitset<>::bitset(const char*, char, char)):
Remove, do not implement DR 778.

From-SVN: r142153

libstdc++-v3/ChangeLog
libstdc++-v3/include/debug/bitset

index 169a22b0016b64442ee703bca1f0819e2fdba6de..2cd9609f4614d2a00b202b3b7410de46d23286b4 100644 (file)
@@ -1,3 +1,9 @@
+2008-11-24  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       PR libstdc++/38244 (cont, debug bits)
+       * include/debug/bitset (bitset<>::bitset(const char*, char, char)):
+       Remove, do not implement DR 778.
+
 2008-11-24  Paolo Carlini  <paolo.carlini@oracle.com>
 
        PR libstdc++/38244
index 1167ee93bdf146aa014181af0be2eee09c018302..c0b33a454ab81625ab057a4cc92eb245776404ad 100644 (file)
@@ -146,12 +146,6 @@ namespace __debug
               _CharT __zero, _CharT __one = _CharT('1'))
        : _Base(__str, __pos, __n, __zero, __one) { }
 
-      // _GLIBCXX_RESOLVE_LIB_DEFECTS
-      // 778. std::bitset does not have any constructor taking a string literal
-      explicit
-      bitset(const char* __s, char __zero = '0', char __one = '1')
-      : _Base(__s, __zero, __one) { }
-
       bitset(const _Base& __x) : _Base(__x), _Safe_base() { }
 
       // 23.3.5.2 bitset operations: