+ Prefer prefix ++/-- operators for non-primitive types

This commit is contained in:
wmayer
2015-10-06 21:16:44 +02:00
parent 48bf07e622
commit f53a691bba
26 changed files with 123 additions and 122 deletions

View File

@@ -398,7 +398,7 @@ void Polygon2D::Intersect (const Polygon2D &rclPolygon, std::list<Polygon2D> &rc
if (afIntersections.size() > 0) // intersections founded
{
for (std::set<double>::iterator pF = afIntersections.begin(); pF != afIntersections.end(); pF++)
for (std::set<double>::iterator pF = afIntersections.begin(); pF != afIntersections.end(); ++pF)
{
// intersection point
Vector2D clPtIS = clLine.FromPos(*pF);