@@ -85,8 +85,8 @@ BOOST_GEOMETRY_DETAIL_SPECIALIZE_BOX_TRAITS(::geom::box_t, ::geom::point_t)
8585template <>
8686struct 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>
9595template <>
9696struct 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>
105105template <>
106106struct 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>
115115template <>
116116struct 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