c++ style : prefix increment

This commit is contained in:
artemp 2016-04-22 12:50:32 +02:00
parent e5fafd31d1
commit 4611d8cad1

View file

@ -389,7 +389,7 @@ bool text_symbolizer_helper::next_point_placement() const
return true; return true;
} }
//No placement for this point. Keep it in points_ for next try. //No placement for this point. Keep it in points_ for next try.
point_itr_++; ++point_itr_;
} }
return false; return false;
} }