-
For a deque containing non-movable element types, deque::insert(iterator, value_type) returns the wrong iterator for middle insertions.
Here is some test code:
deque d;
d.push_back(4);
d.push_back(9);
deque::iterator dit(d.insert(d.begin() + 1, 6));
CPPUNIT_ASSERT(*dit == 6);
Result: unit assert fails
Expected: the returned iterator to point to the inserted element...
2007-01-05 22:00:22 UTC in STLport
-
limethief committed patchset 271 of module xinsource to the Xin CVS repository, changing 3 files.
2005-01-18 23:03:40 UTC in Xin
-
limethief committed patchset 270 of module xinsource to the Xin CVS repository, changing 4 files.
2005-01-18 22:22:54 UTC in Xin
-
limethief committed patchset 269 of module xinsource to the Xin CVS repository, changing 1 files.
2005-01-18 22:12:59 UTC in Xin
-
limethief committed patchset 268 of module xinsource to the Xin CVS repository, changing 11 files.
2005-01-18 22:02:01 UTC in Xin
-
limethief committed patchset 267 of module xinsource to the Xin CVS repository, changing 4 files.
2004-10-26 23:21:25 UTC in Xin
-
limethief committed patchset 266 of module xinsource to the Xin CVS repository, changing 2 files.
2004-10-25 21:24:10 UTC in Xin
-
limethief committed patchset 265 of module xinsource to the Xin CVS repository, changing 15 files.
2004-10-21 01:15:17 UTC in Xin
-
limethief committed patchset 264 of module xinsource to the Xin CVS repository, changing 5 files.
2004-10-18 22:32:00 UTC in Xin
-
limethief committed patchset 263 of module xinsource to the Xin CVS repository, changing 10 files.
2004-10-18 01:23:39 UTC in Xin