WIP: Fixed some compilation issues on OSX, fixed some "override" vs. "virtual"

warnings.
This commit is contained in:
bubnikv 2020-03-04 12:48:04 +01:00
parent cbe9216d79
commit ab7109568a
5 changed files with 14 additions and 14 deletions

View file

@ -39,7 +39,7 @@ public:
// last point == first point for polygons
const Point& last_point() const override { return this->points.front(); }
virtual Lines lines() const;
Lines lines() const override;
Polyline split_at_vertex(const Point &point) const;
// Split a closed polygon into an open polyline, with the split point duplicated at both ends.
Polyline split_at_index(int index) const;