Fix invalid reference return in IndexedListIterator

pull/93/head
Nils Maier 2013-04-02 19:20:35 +02:00
parent 8d2191e488
commit e25c0955c5
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ struct IndexedListIterator {
return *this; return *this;
} }
SelfType& operator--(int) SelfType operator--(int)
{ {
SelfType copy = *this; SelfType copy = *this;
--*this; --*this;