Fixed Clang 12 compiler warnings.
This commit is contained in:
parent
383f6509a9
commit
46c827c7fc
8 changed files with 15 additions and 7 deletions
|
@ -16,7 +16,8 @@ typedef std::vector<ThickPolyline> ThickPolylines;
|
|||
|
||||
class Polyline : public MultiPoint {
|
||||
public:
|
||||
Polyline() {};
|
||||
Polyline() = default;
|
||||
~Polyline() override = default;
|
||||
Polyline(const Polyline &other) : MultiPoint(other.points) {}
|
||||
Polyline(Polyline &&other) : MultiPoint(std::move(other.points)) {}
|
||||
Polyline(std::initializer_list<Point> list) : MultiPoint(list) {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue