diff options
author | Paolo Carlini <paolo.carlini@oracle.com> | 2008-09-23 18:14:24 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2008-09-23 18:14:24 +0000 |
commit | 47cd155763fa67da6f50821714de8b1cbebab8fb (patch) | |
tree | 83a429a496255d0aafa7fadcc8baf90768f93d21 /libstdc++-v3/doc | |
parent | 37e27d01ca9a909987268f9e7ddc0a85cfc0863c (diff) | |
download | gcc-47cd155763fa67da6f50821714de8b1cbebab8fb.zip gcc-47cd155763fa67da6f50821714de8b1cbebab8fb.tar.gz gcc-47cd155763fa67da6f50821714de8b1cbebab8fb.tar.bz2 |
Implement DR 396 [Ready].
2008-09-23 Paolo Carlini <paolo.carlini@oracle.com>
Implement DR 396 [Ready].
* include/std/bitset (bitset<>::bitset(const std::basic_string<>&,
size_t, size_t, _CharT, _CharT), bitset<>::bitset(const char*,
char, char), bitset<>::to_string(_CharT, _CharT),
bitset<>::_M_copy_from_string(const std::basic_string<>&, size_t,
size_t, _CharT, _CharT), bitset<>::_M_copy_to_string
(std::basic_string<>&, _CharT, _CharT), bitset<>::_M_copy_from_ptr(
const _CharT*, size_t, size_t, size_t, _CharT, _CharT)): Add.
(operator>>(std::basic_istream<>&, bitset<_Nb>&), operator<<(
std::basic_ostream<>&, const bitset<_Nb>&)): Adjust.
* include/debug/bitset (bitset<>::bitset(const std::basic_string<>&,
size_t, size_t, _CharT, _CharT), bitset<>::bitset(const char*,
char, char), bitset<>::to_string(_CharT, _CharT)): Add.
* doc/xml/manual/intro.xml: Add an entry for DR 396.
* testsuite/23_containers/bitset/cons/dr396.cc: Add.
* testsuite/23_containers/bitset/to_string/dr396.cc: Likewise.
From-SVN: r140607
Diffstat (limited to 'libstdc++-v3/doc')
-rw-r--r-- | libstdc++-v3/doc/xml/manual/intro.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libstdc++-v3/doc/xml/manual/intro.xml b/libstdc++-v3/doc/xml/manual/intro.xml index 08e107a..eb9652f 100644 --- a/libstdc++-v3/doc/xml/manual/intro.xml +++ b/libstdc++-v3/doc/xml/manual/intro.xml @@ -522,6 +522,12 @@ <listitem><para>Change it to return a <code>const T&</code>. </para></listitem></varlistentry> + <varlistentry><term><ulink url="../ext/lwg-active.html#396">396</ulink>: + <emphasis>what are characters zero and one</emphasis> + </term> + <listitem><para>Implement the proposed resolution. + </para></listitem></varlistentry> + <varlistentry><term><ulink url="../ext/lwg-defects.html#402">402</ulink>: <emphasis>Wrong new expression in [some_]allocator::construct</emphasis> </term> |