Fix decrement operator in PropertyTreeObjectMemberIterator

This commit is contained in:
Tristan Penman 2016-08-10 08:35:49 -07:00
parent 29721d5538
commit fe7e19494c

View File

@ -689,7 +689,7 @@ public:
const PropertyTreeObjectMemberIterator& operator--()
{
itr++;
itr--;
return *this;
}