diff options
author | Paolo Carlini <pcarlini@suse.de> | 2006-02-08 21:51:55 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2006-02-08 21:51:55 +0000 |
commit | 3089d5a4191be0a88dfe84ba844db83d166aafe6 (patch) | |
tree | afc9e7468effc2459be7ba1df3d25e2c9349c86f /libstdc++-v3/docs | |
parent | 5f8f531322798fed73c507580e602903b96ab122 (diff) | |
download | gcc-3089d5a4191be0a88dfe84ba844db83d166aafe6.zip gcc-3089d5a4191be0a88dfe84ba844db83d166aafe6.tar.gz gcc-3089d5a4191be0a88dfe84ba844db83d166aafe6.tar.bz2 |
PR libstdc++/26133 (DR 241, [WP])
2006-02-08 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/26133 (DR 241, [WP])
* include/bits/stl_algo.h (__unique_copy(,,, forward_iterator_tag,
output_iterator_tag), __unique_copy(,,, input_iterator_tag,
output_iterator_tag), __unique_copy(,,, input_iterator_tag,
forward_iterator_tag), and predicated counterparts): Add.
(__unique_copy(,,, output_iterator_tag), __unique_copy(,,,
forward_iterator_tag), and predicated counterparts): Remove.
(unique_copy): Adjust, dispatch to the three helpers above.
* testsuite/25_algorithms/unique_copy/2.cc: New.
* testsuite/25_algorithms/unique_copy/26133.cc: Likewise.
* testsuite/25_algorithms/unique_copy/3.cc: Likewise.
* docs/html/ext/howto.html: Add an entry for DR 241.
* testsuite/25_algorithms/unique_copy/1.cc: Minor cosmetic changes.
From-SVN: r110772
Diffstat (limited to 'libstdc++-v3/docs')
-rw-r--r-- | libstdc++-v3/docs/html/ext/howto.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libstdc++-v3/docs/html/ext/howto.html b/libstdc++-v3/docs/html/ext/howto.html index bc0b358..6aaf994 100644 --- a/libstdc++-v3/docs/html/ext/howto.html +++ b/libstdc++-v3/docs/html/ext/howto.html @@ -413,6 +413,13 @@ However, no specification is given what this constructor should do. </dd> + <dt><a href="lwg-defects.html#241">241</a>: + <em>Does unique_copy() require CopyConstructible and Assignable?</em> + </dt> + <dd>Add an helper for forward_iterator/output_iterator, fix the existing + one for input_iterator/output_iterator not to rely on Assignability. + </dd> + <dt><a href="lwg-defects.html#243">243</a>: <em>get and getline when sentry reports failure</em> </dt> |