diff --git a/geometry/point2d.hpp b/geometry/point2d.hpp index 57984e4683..787b795f53 100644 --- a/geometry/point2d.hpp +++ b/geometry/point2d.hpp @@ -22,7 +22,7 @@ namespace m2 T x, y; - Point() {} + Point() : x(T()), y(T()) {} Point(T x_, T y_) : x(x_), y(y_) {} template Point(Point const & u) : x(u.x), y(u.y) {}