1 --- libzmf.orig/src/lib/ZMFTypes.cpp 2017-09-17 12:14:41.987990622 +0100
2 +++ libzmf/src/lib/ZMFTypes.cpp 2017-09-17 12:16:32.636850391 +0100
5 double Point::distance(const Point &p2) const
7 - return std::hypot(p2.x - x, p2.y - y);
8 + return ::hypot(p2.x - x, p2.y - y);
12 BoundingBox::BoundingBox(const std::vector<Point> &points_)