summaryrefslogtreecommitdiff
path: root/boost/geometry/algorithms/detail/overlay/pointlike_pointlike.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/geometry/algorithms/detail/overlay/pointlike_pointlike.hpp')
-rw-r--r--boost/geometry/algorithms/detail/overlay/pointlike_pointlike.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/boost/geometry/algorithms/detail/overlay/pointlike_pointlike.hpp b/boost/geometry/algorithms/detail/overlay/pointlike_pointlike.hpp
index 88aedecf86..afe8f680be 100644
--- a/boost/geometry/algorithms/detail/overlay/pointlike_pointlike.hpp
+++ b/boost/geometry/algorithms/detail/overlay/pointlike_pointlike.hpp
@@ -1,6 +1,6 @@
// Boost.Geometry (aka GGL, Generic Geometry Library)
-// Copyright (c) 2014-2017, Oracle and/or its affiliates.
+// Copyright (c) 2014-2018, Oracle and/or its affiliates.
// Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle
// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
@@ -148,13 +148,13 @@ struct point_point_point
Point2 const& point2,
RobustPolicy const& ,
OutputIterator oit,
- Strategy const&)
+ Strategy const& strategy)
{
action_selector_pl_pl
<
PointOut, OverlayType
>::apply(point1,
- detail::equals::equals_point_point(point1, point2),
+ detail::equals::equals_point_point(point1, point2, strategy),
oit);
return oit;
@@ -182,7 +182,7 @@ struct multipoint_point_point
Point const& point,
RobustPolicy const& ,
OutputIterator oit,
- Strategy const&)
+ Strategy const& strategy)
{
BOOST_GEOMETRY_ASSERT( OverlayType == overlay_difference );
@@ -194,7 +194,7 @@ struct multipoint_point_point
<
PointOut, OverlayType
>::apply(*it,
- detail::equals::equals_point_point(*it, point),
+ detail::equals::equals_point_point(*it, point, strategy),
oit);
}
@@ -218,7 +218,7 @@ struct point_multipoint_point
MultiPoint const& multipoint,
RobustPolicy const& ,
OutputIterator oit,
- Strategy const&)
+ Strategy const& strategy)
{
typedef action_selector_pl_pl<PointOut, OverlayType> action;
@@ -226,7 +226,7 @@ struct point_multipoint_point
it = boost::begin(multipoint);
it != boost::end(multipoint); ++it)
{
- if ( detail::equals::equals_point_point(*it, point) )
+ if ( detail::equals::equals_point_point(*it, point, strategy) )
{
action::apply(point, true, oit);
return oit;