The method:
RecordList & RecordList::operator=( const RecordList & other );
has incorrect semantics.
It currently clears the contents of this before copying content.
It should first of all check to see if this==other. It is perfectly valid
to assign instance A to A without losing its content.
Original issue reported on code.google.com by tal...@gmail.com on 6 Nov 2009 at 5:50
Original issue reported on code.google.com by
tal...@gmail.com
on 6 Nov 2009 at 5:50