From: Paolo Carlini Date: Mon, 24 Nov 2008 11:19:39 +0000 (+0000) Subject: PR libstdc++/38244 (cont, debug bits) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c32f57c054225a1fd2a83e498cb6131a5bfdabea;p=gcc.git PR libstdc++/38244 (cont, debug bits) 2008-11-24 Paolo Carlini PR libstdc++/38244 (cont, debug bits) * include/debug/bitset (bitset<>::bitset(const char*, char, char)): Remove, do not implement DR 778. From-SVN: r142153 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 169a22b0016..2cd9609f461 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2008-11-24 Paolo Carlini + + 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 PR libstdc++/38244 diff --git a/libstdc++-v3/include/debug/bitset b/libstdc++-v3/include/debug/bitset index 1167ee93bdf..c0b33a454ab 100644 --- a/libstdc++-v3/include/debug/bitset +++ b/libstdc++-v3/include/debug/bitset @@ -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: