Skip to content

Commit 7ab133e

Browse files
committed
Remove implied inlines
1 parent 6518353 commit 7ab133e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/geom-boost-adaptor.hpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ BOOST_GEOMETRY_DETAIL_SPECIALIZE_BOX_TRAITS(::geom::box_t, ::geom::point_t)
8585
template <>
8686
struct indexed_access<::geom::box_t, min_corner, 0>
8787
{
88-
static inline double get(::geom::box_t const &b) { return b.min_x(); }
89-
static inline void set(::geom::box_t &b, double value)
88+
static double get(::geom::box_t const &b) { return b.min_x(); }
89+
static void set(::geom::box_t &b, double value)
9090
{
9191
b.set_min_x(value);
9292
}
@@ -95,8 +95,8 @@ struct indexed_access<::geom::box_t, min_corner, 0>
9595
template <>
9696
struct indexed_access<::geom::box_t, min_corner, 1>
9797
{
98-
static inline double get(::geom::box_t const &b) { return b.min_y(); }
99-
static inline void set(::geom::box_t &b, double value)
98+
static double get(::geom::box_t const &b) { return b.min_y(); }
99+
static void set(::geom::box_t &b, double value)
100100
{
101101
b.set_min_y(value);
102102
}
@@ -105,8 +105,8 @@ struct indexed_access<::geom::box_t, min_corner, 1>
105105
template <>
106106
struct indexed_access<::geom::box_t, max_corner, 0>
107107
{
108-
static inline double get(::geom::box_t const &b) { return b.max_x(); }
109-
static inline void set(::geom::box_t &b, double value)
108+
static double get(::geom::box_t const &b) { return b.max_x(); }
109+
static void set(::geom::box_t &b, double value)
110110
{
111111
b.set_max_x(value);
112112
}
@@ -115,8 +115,8 @@ struct indexed_access<::geom::box_t, max_corner, 0>
115115
template <>
116116
struct indexed_access<::geom::box_t, max_corner, 1>
117117
{
118-
static inline double get(::geom::box_t const &b) { return b.max_y(); }
119-
static inline void set(::geom::box_t &b, double value)
118+
static double get(::geom::box_t const &b) { return b.max_y(); }
119+
static void set(::geom::box_t &b, double value)
120120
{
121121
b.set_max_y(value);
122122
}

0 commit comments

Comments
 (0)