From 16ef03980f8e50e610ce3697bf01acca38a5eca2 Mon Sep 17 00:00:00 2001 From: Bruno Lalande Date: Fri, 16 Dec 2011 17:06:44 +0000 Subject: [PATCH] Changed the multi versions of dispatch::distance according to changes made in r75975. [SVN r75996] --- .../boost/geometry/multi/algorithms/distance.hpp | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/include/boost/geometry/multi/algorithms/distance.hpp b/include/boost/geometry/multi/algorithms/distance.hpp index 3edde6804..4ec53afb2 100644 --- a/include/boost/geometry/multi/algorithms/distance.hpp +++ b/include/boost/geometry/multi/algorithms/distance.hpp @@ -110,12 +110,24 @@ template typename Strategy, typename SingleGeometryTag > -struct distance +struct distance +< + G1, G2, + strategy_tag_distance_point_point, Strategy, + SingleGeometryTag, multi_tag, + false +> : detail::distance::distance_single_to_multi {}; template -struct distance +struct distance +< + G1, G2, + strategy_tag_distance_point_point, Strategy, + multi_tag, multi_tag, + false +> : detail::distance::distance_multi_to_multi {};