Version 6.4.0.0.beta1, tag libreoffice-6.4.0.0.beta1
[LibreOffice.git] / external / libzmf / android-workaround.patch.1
bloba46c5e8c3972bdbb9bf61234fa9b65266b9aabb7
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
3 @@ -38,10 +38,9 @@
4  
5  double Point::distance(const Point &p2) const
6  {
7 -  return std::hypot(p2.x - x, p2.y - y);
8 +  return ::hypot(p2.x - x, p2.y - y);
9  }
12  BoundingBox::BoundingBox(const std::vector<Point> &points_)
13    : m_points(points_)
14    , m_width(0.0)