mirror of
https://github.com/boostorg/geometry.git
synced 2026-02-12 00:02:09 +00:00
Changed the multi versions of dispatch::distance according to changes made in r75975.
[SVN r75996]
This commit is contained in:
@@ -110,12 +110,24 @@ template
|
||||
typename Strategy,
|
||||
typename SingleGeometryTag
|
||||
>
|
||||
struct distance<G1, G2, strategy_tag_distance_point_point, Strategy, SingleGeometryTag, multi_tag>
|
||||
struct distance
|
||||
<
|
||||
G1, G2,
|
||||
strategy_tag_distance_point_point, Strategy,
|
||||
SingleGeometryTag, multi_tag,
|
||||
false
|
||||
>
|
||||
: detail::distance::distance_single_to_multi<G1, G2, Strategy>
|
||||
{};
|
||||
|
||||
template <typename G1, typename G2, typename Strategy>
|
||||
struct distance<G1, G2, strategy_tag_distance_point_point, Strategy, multi_tag, multi_tag>
|
||||
struct distance
|
||||
<
|
||||
G1, G2,
|
||||
strategy_tag_distance_point_point, Strategy,
|
||||
multi_tag, multi_tag,
|
||||
false
|
||||
>
|
||||
: detail::distance::distance_multi_to_multi<G1, G2, Strategy>
|
||||
{};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user