Skip to content

Commit b54a058

Browse files
authored
Catch up with dms_parser change from function call operator to apply (#786)
The change was applied in PR #394
1 parent f615372 commit b54a058

File tree

1 file changed

+2
-2
lines changed
  • include/boost/geometry/extensions/algorithms

1 file changed

+2
-2
lines changed

include/boost/geometry/extensions/algorithms/parse.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ struct parsing<point_tag, Point>
5858

5959
typedef typename coordinate_type<Point>::type coord_t;
6060
typedef boost::geometry::projections::detail::dms_result<coord_t> dms_result_t;
61-
dms_result_t r1 = strategy(c1.c_str());
62-
dms_result_t r2 = strategy(c2.c_str());
61+
dms_result_t r1 = strategy.apply(c1.c_str());
62+
dms_result_t r2 = strategy.apply(c2.c_str());
6363

6464
if (0 == r1.axis())
6565
set<0>(point, r1.angle());

0 commit comments

Comments
 (0)