Commit c32f57c0 by Paolo Carlini Committed by Paolo Carlini

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
parent 9daf8216
2008-11-24 Paolo Carlini <paolo.carlini@oracle.com> 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 PR libstdc++/38244
* include/std/bitset (bitset<>::bitset(const char*, char, char)): * include/std/bitset (bitset<>::bitset(const char*, char, char)):
Remove, do not implement DR 778. Remove, do not implement DR 778.
......
...@@ -146,12 +146,6 @@ namespace __debug ...@@ -146,12 +146,6 @@ namespace __debug
_CharT __zero, _CharT __one = _CharT('1')) _CharT __zero, _CharT __one = _CharT('1'))
: _Base(__str, __pos, __n, __zero, __one) { } : _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() { } bitset(const _Base& __x) : _Base(__x), _Safe_base() { }
// 23.3.5.2 bitset operations: // 23.3.5.2 bitset operations:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment