We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f615372 commit b54a058Copy full SHA for b54a058
include/boost/geometry/extensions/algorithms/parse.hpp
@@ -58,8 +58,8 @@ struct parsing<point_tag, Point>
58
59
typedef typename coordinate_type<Point>::type coord_t;
60
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());
+ dms_result_t r1 = strategy.apply(c1.c_str());
+ dms_result_t r2 = strategy.apply(c2.c_str());
63
64
if (0 == r1.axis())
65
set<0>(point, r1.angle());
0 commit comments