Skip to content

Commit b0e3c67

Browse files
committed
[strategies] [convex_hull] Inherit base class in public mode
1 parent 9c1905d commit b0e3c67

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

include/boost/geometry/strategies/convex_hull/cartesian.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ namespace strategies { namespace convex_hull
2222
{
2323

2424
template <typename CalculationType = void>
25-
class cartesian : strategies::detail::cartesian_base
25+
class cartesian : public strategies::detail::cartesian_base
2626
{
2727
public:
2828
static auto side()

include/boost/geometry/strategies/convex_hull/geographic.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ template
2828
typename Spheroid = srs::spheroid<double>,
2929
typename CalculationType = void
3030
>
31-
class geographic : strategies::detail::geographic_base<Spheroid>
31+
class geographic : public strategies::detail::geographic_base<Spheroid>
3232
{
3333
using base_t = strategies::detail::geographic_base<Spheroid>;
3434

include/boost/geometry/strategies/convex_hull/spherical.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace strategies { namespace convex_hull
2323
{
2424

2525
template <typename CalculationType = void>
26-
class spherical : strategies::detail::spherical_base<void>
26+
class spherical : public strategies::detail::spherical_base<void>
2727
{
2828
public:
2929
static auto side()

0 commit comments

Comments
 (0)