diff options
author | Paolo Carlini <pcarlini@suse.de> | 2006-01-08 17:34:32 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2006-01-08 17:34:32 +0000 |
commit | cf1e03717aecec7390802df60679b2921a4d3f91 (patch) | |
tree | 497e08462c45165b8eb2f8abe2bdc6bcd1929496 /libstdc++-v3/docs | |
parent | 1d85354c982ba2e2c093de622b28a10fd2518dca (diff) | |
download | gcc-cf1e03717aecec7390802df60679b2921a4d3f91.zip gcc-cf1e03717aecec7390802df60679b2921a4d3f91.tar.gz gcc-cf1e03717aecec7390802df60679b2921a4d3f91.tar.bz2 |
PR libstdc++/22102 (insert as close to hint as possible)
2006-01-08 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/22102 (insert as close to hint as possible)
* include/bits/stl_tree.h (_Rb_tree<>::_M_insert_lower,
_M_insert_equal_lower): New.
(_M_insert_equal(iterator, const _Val&),
_M_insert_equal(const_iterator, const _Val&)): Use the above.
* docs/html/ext/howto.html: Add an entry for DR 233.
* testsuite/23_containers/multiset/modifiers/insert/22102.cc: New.
* testsuite/23_containers/multimap/modifiers/insert/22102.cc: New.
* testsuite/23_containers/set/insert/: Move...
* testsuite/23_containers/set/modifiers/insert/: ...here.
* testsuite/23_containers/map/insert/: Move...
* testsuite/23_containers/map/modifiers/insert/: ...here.
* testsuite/23_containers/multiset/insert/: Move...
* testsuite/23_containers/multiset/modifiers/insert/: ...here.
From-SVN: r109473
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 9d86bc0..bc0b358 100644 --- a/libstdc++-v3/docs/html/ext/howto.html +++ b/libstdc++-v3/docs/html/ext/howto.html @@ -399,6 +399,13 @@ is specified in the conversion specification. </dd> + <dt><a href="lwg-active.html#233">233</a>: + <em>Insertion hints in associative containers</em> + </dt> + <dd>Implement N1780, first check before then check after, insert as close + to hint as possible. + </dd> + <dt><a href="lwg-defects.html#235">235</a>: <em>No specification of default ctor for reverse_iterator</em> </dt> |