12345678910111213141516171819202122232425 |
- #ifndef BOOST_GIL_DETAIL_MP11_HPP
- #define BOOST_GIL_DETAIL_MP11_HPP
- #include <boost/mp11.hpp>
- namespace boost { namespace gil { namespace detail {
- template<typename L>
- using mp_back = ::boost::mp11::mp_at_c<L, ::boost::mp11::mp_size<L>::value - 1>;
- template<typename L>
- using mp_pop_back = ::boost::mp11::mp_take_c<L, ::boost::mp11::mp_size<L>::value - 1>;
- }}}
- #endif
|