12345678910111213141516171819202122232425262728293031323334353637383940 |
- #ifndef BOOST_GEOMETRY_PROJECTIONS_IMPL_FUNCTION_OVERLOADS_HPP
- #define BOOST_GEOMETRY_PROJECTIONS_IMPL_FUNCTION_OVERLOADS_HPP
- #include <cmath>
- namespace boost { namespace geometry { namespace projections
- {
- template <typename T>
- inline int int_floor(T const& f)
- {
- using std::floor;
- return int(floor(f));
- }
- }}}
- #endif
|