From 85160c4718167da0859c79bdb37b92568bc7e9dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20=C5=81oskot?= Date: Tue, 22 Dec 2020 19:20:42 +0100 Subject: [PATCH] Catch up with dms_parser change from function call operator to apply The change was applied in PR #394 --- include/boost/geometry/extensions/algorithms/parse.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/geometry/extensions/algorithms/parse.hpp b/include/boost/geometry/extensions/algorithms/parse.hpp index d9354435d6..836e1ab251 100644 --- a/include/boost/geometry/extensions/algorithms/parse.hpp +++ b/include/boost/geometry/extensions/algorithms/parse.hpp @@ -58,8 +58,8 @@ struct parsing typedef typename coordinate_type::type coord_t; typedef boost::geometry::projections::detail::dms_result dms_result_t; - dms_result_t r1 = strategy(c1.c_str()); - dms_result_t r2 = strategy(c2.c_str()); + dms_result_t r1 = strategy.apply(c1.c_str()); + dms_result_t r2 = strategy.apply(c2.c_str()); if (0 == r1.axis()) set<0>(point, r1.angle());