diff options
author | Paolo Carlini <paolo.carlini@oracle.com> | 2008-11-24 11:19:39 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2008-11-24 11:19:39 +0000 |
commit | c32f57c054225a1fd2a83e498cb6131a5bfdabea (patch) | |
tree | a1dc0d5c2199c6ff410de88364ecf66be36e37a4 | |
parent | 9daf8216f4ec1464c0fea1cea7008a21f31abbaa (diff) | |
download | gcc-c32f57c054225a1fd2a83e498cb6131a5bfdabea.zip gcc-c32f57c054225a1fd2a83e498cb6131a5bfdabea.tar.gz gcc-c32f57c054225a1fd2a83e498cb6131a5bfdabea.tar.bz2 |
PR libstdc++/38244 (cont, debug bits)
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
-rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
-rw-r--r-- | libstdc++-v3/include/debug/bitset | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 169a22b..2cd9609 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,11 @@ 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 * include/std/bitset (bitset<>::bitset(const char*, char, char)): Remove, do not implement DR 778. diff --git a/libstdc++-v3/include/debug/bitset b/libstdc++-v3/include/debug/bitset index 1167ee9..c0b33a4 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: |