From: SourceForge.net <no...@so...> - 2005-09-03 18:42:47
|
Bugs item #1281354, was opened at 2005-09-03 18:42 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=107869&aid=1281354&group_id=7869 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Jonathan Wakely (redi) Assigned to: Jonathan Wakely (redi) Summary: Odd subscript_iterator arithmetic operators Initial Comment: The arithmetic ops for subscript_iterator are odd, for example: bool operator != (const subscript_iterator &j) const { return (d == j.d && i!=j.i); } this means that two iterators with different 'd' pointers will return false when compared with != I don't plan to change this for 2.0.0 as I need to look into it further. Should define < and == correctly and then implement others in terms of them. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=107869&aid=1281354&group_id=7869 |