public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libstdc++/20787] New: Implement resolution of DR 130 [Ready] in v7-branch
@ 2005-04-06 10:50 pcarlini at suse dot de
  2005-04-06 10:51 ` [Bug libstdc++/20787] " pcarlini at suse dot de
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: pcarlini at suse dot de @ 2005-04-06 10:50 UTC (permalink / raw)
  To: gcc-bugs

Just an internal reminder. A couple of notes:
1- I'm pretty sure cannot be implemented in v6, but would be happy to be wrong.
2- Maybe a similar fix is needed also for <tr1/unordered_*>.

-- 
           Summary: Implement resolution of DR 130 [Ready] in v7-branch
           Product: gcc
           Version: 4.0.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: libstdc++
        AssignedTo: pcarlini at suse dot de
        ReportedBy: pcarlini at suse dot de
                CC: gcc-bugs at gcc dot gnu dot org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20787


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug libstdc++/20787] Implement resolution of DR 130 [Ready] in v7-branch
  2005-04-06 10:50 [Bug libstdc++/20787] New: Implement resolution of DR 130 [Ready] in v7-branch pcarlini at suse dot de
@ 2005-04-06 10:51 ` pcarlini at suse dot de
  2005-04-06 11:10 ` pcarlini at suse dot de
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: pcarlini at suse dot de @ 2005-04-06 10:51 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2005-04-06 10:50:57
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20787


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug libstdc++/20787] Implement resolution of DR 130 [Ready] in v7-branch
  2005-04-06 10:50 [Bug libstdc++/20787] New: Implement resolution of DR 130 [Ready] in v7-branch pcarlini at suse dot de
  2005-04-06 10:51 ` [Bug libstdc++/20787] " pcarlini at suse dot de
@ 2005-04-06 11:10 ` pcarlini at suse dot de
  2005-09-03  0:40 ` [Bug libstdc++/20787] [DR 130] " cvs-commit at gcc dot gnu dot org
  2005-09-03  0:41 ` pcarlini at suse dot de
  3 siblings, 0 replies; 5+ messages in thread
From: pcarlini at suse dot de @ 2005-04-06 11:10 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |enhancement


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20787


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug libstdc++/20787] [DR 130] Implement resolution of DR 130 [Ready] in v7-branch
  2005-04-06 10:50 [Bug libstdc++/20787] New: Implement resolution of DR 130 [Ready] in v7-branch pcarlini at suse dot de
  2005-04-06 10:51 ` [Bug libstdc++/20787] " pcarlini at suse dot de
  2005-04-06 11:10 ` pcarlini at suse dot de
@ 2005-09-03  0:40 ` cvs-commit at gcc dot gnu dot org
  2005-09-03  0:41 ` pcarlini at suse dot de
  3 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-09-03  0:40 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-09-03 00:39 -------
Subject: Bug 20787

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	libstdcxx_so_7-branch
Changes by:	paolo@gcc.gnu.org	2005-09-03 00:39:37

Modified files:
	libstdc++-v3   : ChangeLog.libstdcxx_so_7-branch 
	libstdc++-v3/docs/html/ext: howto.html 
	libstdc++-v3/include/bits: stl_map.h stl_multimap.h 
	                           stl_multiset.h stl_set.h stl_tree.h 
	libstdc++-v3/include/debug: map.h multimap.h multiset.h set.h 
Added files:
	libstdc++-v3/testsuite/23_containers/map/erase: 1.cc 
	libstdc++-v3/testsuite/23_containers/multimap/erase: 1.cc 
	libstdc++-v3/testsuite/23_containers/multiset/erase: 1.cc 
	libstdc++-v3/testsuite/23_containers/set/erase: 1.cc 

Log message:
	2005-09-02  Paolo Carlini  <pcarlini@suse.de>
	
	PR libstdc++/20787 (DR 130 [DR])
	* include/bits/stl_tree.h (_Rb_tree<>::erase(iterator),
	_Rb_tree<>::erase(iterator, iterator)): Adjust to return
	an iterator, as per the resolution of DR 130.
	* include/bits/stl_map.h (map<>::erase(iterator),
	map<>::erase(iterator, iterator)): Update consistently.
	* include/bits/stl_multimap.h (multimap<>::erase(iterator),
	multimap<>::erase(iterator, iterator)): Likewise.
	* include/bits/stl_multiset.h (multiset<>::erase(iterator),
	multiset<>::erase(iterator, iterator)): Likewise.
	* include/bits/stl_set.h (set<>::erase(iterator),
	set<>::erase(iterator, iterator)): Likewise.
	* include/debug/map.h (map<>::erase(iterator),
	map<>::erase(iterator, iterator)): Likewise.
	* include/debug/multimap.h (multimap<>::erase(iterator),
	multimap<>::erase(iterator, iterator)): Likewise.
	* include/debug/multiset.h (multiset<>::erase(iterator),
	multiset<>::erase(iterator, iterator)): Likewise.
	* include/debug/set.h (set<>::erase(iterator),
	set<>::erase(iterator, iterator)): Likewise.
	* docs/html/ext/howto.html: Add an entry for DR 130.
	* testsuite/23_containers/map/erase/1.cc: New.
	* testsuite/23_containers/multimap/erase/1.cc: Likewise.
	* testsuite/23_containers/multiset/erase/1.cc: Likewise.
	* testsuite/23_containers/set/erase/1.cc: Likewise.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/ChangeLog.libstdcxx_so_7-branch.diff?cvsroot=gcc&only_with_tag=libstdcxx_so_7-branch&r1=1.1.2.65&r2=1.1.2.66
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/docs/html/ext/howto.html.diff?cvsroot=gcc&only_with_tag=libstdcxx_so_7-branch&r1=1.47.4.6&r2=1.47.4.7
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/bits/stl_map.h.diff?cvsroot=gcc&only_with_tag=libstdcxx_so_7-branch&r1=1.24.2.7&r2=1.24.2.8
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/bits/stl_multimap.h.diff?cvsroot=gcc&only_with_tag=libstdcxx_so_7-branch&r1=1.23.2.7&r2=1.23.2.8
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/bits/stl_multiset.h.diff?cvsroot=gcc&only_with_tag=libstdcxx_so_7-branch&r1=1.24.2.6&r2=1.24.2.7
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/bits/stl_set.h.diff?cvsroot=gcc&only_with_tag=libstdcxx_so_7-branch&r1=1.23.2.6&r2=1.23.2.7
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/bits/stl_tree.h.diff?cvsroot=gcc&only_with_tag=libstdcxx_so_7-branch&r1=1.36.2.9&r2=1.36.2.10
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/debug/map.h.diff?cvsroot=gcc&only_with_tag=libstdcxx_so_7-branch&r1=1.3.2.2&r2=1.3.2.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/debug/multimap.h.diff?cvsroot=gcc&only_with_tag=libstdcxx_so_7-branch&r1=1.3.2.1&r2=1.3.2.2
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/debug/multiset.h.diff?cvsroot=gcc&only_with_tag=libstdcxx_so_7-branch&r1=1.3.2.1&r2=1.3.2.2
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/debug/set.h.diff?cvsroot=gcc&only_with_tag=libstdcxx_so_7-branch&r1=1.3.2.1&r2=1.3.2.2
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/23_containers/map/erase/1.cc.diff?cvsroot=gcc&only_with_tag=libstdcxx_so_7-branch&r1=NONE&r2=1.1.2.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/23_containers/multimap/erase/1.cc.diff?cvsroot=gcc&only_with_tag=libstdcxx_so_7-branch&r1=NONE&r2=1.1.2.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/23_containers/multiset/erase/1.cc.diff?cvsroot=gcc&only_with_tag=libstdcxx_so_7-branch&r1=NONE&r2=1.1.2.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/23_containers/set/erase/1.cc.diff?cvsroot=gcc&only_with_tag=libstdcxx_so_7-branch&r1=NONE&r2=1.1.2.1



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20787


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug libstdc++/20787] [DR 130] Implement resolution of DR 130 [Ready] in v7-branch
  2005-04-06 10:50 [Bug libstdc++/20787] New: Implement resolution of DR 130 [Ready] in v7-branch pcarlini at suse dot de
                   ` (2 preceding siblings ...)
  2005-09-03  0:40 ` [Bug libstdc++/20787] [DR 130] " cvs-commit at gcc dot gnu dot org
@ 2005-09-03  0:41 ` pcarlini at suse dot de
  3 siblings, 0 replies; 5+ messages in thread
From: pcarlini at suse dot de @ 2005-09-03  0:41 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pcarlini at suse dot de  2005-09-03 00:41 -------
Fixed in v7-branch.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20787


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-09-03  0:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-04-06 10:50 [Bug libstdc++/20787] New: Implement resolution of DR 130 [Ready] in v7-branch pcarlini at suse dot de
2005-04-06 10:51 ` [Bug libstdc++/20787] " pcarlini at suse dot de
2005-04-06 11:10 ` pcarlini at suse dot de
2005-09-03  0:40 ` [Bug libstdc++/20787] [DR 130] " cvs-commit at gcc dot gnu dot org
2005-09-03  0:41 ` pcarlini at suse dot de

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).