File indexing completed on 2025-12-15 09:51:58
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef BOOST_GIL_DETAIL_MP11_HPP
0010 #define BOOST_GIL_DETAIL_MP11_HPP
0011
0012 #include <boost/mp11.hpp>
0013
0014 namespace boost { namespace gil { namespace detail {
0015
0016 template<typename L>
0017 using mp_back = ::boost::mp11::mp_at_c<L, ::boost::mp11::mp_size<L>::value - 1>;
0018
0019 template<typename L>
0020 using mp_pop_back = ::boost::mp11::mp_take_c<L, ::boost::mp11::mp_size<L>::value - 1>;
0021
0022
0023 }}}
0024
0025 #endif