X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=ceph%2Fsrc%2Fboost%2Flibs%2Fgeometry%2Ftest%2Falgorithms%2Fdetail%2Fpartition.cpp;h=9d63668d89a028eda8690c63afe78449f7de185d;hb=92f5a8d42d07f9929ae4fa7e01342fe8d96808a8;hp=fc899631dd1f45bd4381eb47b18fd0d17b8dc7b0;hpb=a0324939f9d0e1905d5df8f57442f09dc70af83d;p=ceph.git diff --git a/ceph/src/boost/libs/geometry/test/algorithms/detail/partition.cpp b/ceph/src/boost/libs/geometry/test/algorithms/detail/partition.cpp index fc899631d..9d63668d8 100644 --- a/ceph/src/boost/libs/geometry/test/algorithms/detail/partition.cpp +++ b/ceph/src/boost/libs/geometry/test/algorithms/detail/partition.cpp @@ -3,8 +3,8 @@ // Copyright (c) 2007-2015 Barend Gehrels, Amsterdam, the Netherlands. // Copyright (c) 2017 Adam Wulkiewicz, Lodz, Poland. // -// This file was modified by Oracle on 2017. -// Modifications copyright (c) 2017 Oracle and/or its affiliates. +// This file was modified by Oracle on 2017, 2018. +// Modifications copyright (c) 2017-2018 Oracle and/or its affiliates. // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle // // Use, modification and distribution is subject to the Boost Software License, @@ -65,7 +65,12 @@ struct ovelaps_box template static inline bool apply(Box const& box, InputItem const& item) { - return ! bg::detail::disjoint::disjoint_box_box(box, item.box); + typename bg::strategy::disjoint::services::default_strategy + < + Box, Box + >::type strategy; + + return ! bg::detail::disjoint::disjoint_box_box(box, item.box, strategy); } };