Skip to content

Commit

Permalink
Fix Coverity warning
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Nov 11, 2024
1 parent 7c55296 commit 194329b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ogr/ogrgeometryfactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2052,7 +2052,7 @@ OGRGeometry *OGRGeometryFactory::organizePolygons(OGRGeometry **papoPolygons,
// j.
break;
}
previousPoint = point;
previousPoint = std::move(point);
}
}
}
Expand Down

0 comments on commit 194329b

Please sign in to comment.