1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef BOOST_MPL_AUX_APPLY_1ST_HPP_INCLUDED
- #define BOOST_MPL_AUX_APPLY_1ST_HPP_INCLUDED
- #include <boost/mpl/apply.hpp>
- namespace boost { namespace mpl { namespace aux {
- struct apply_1st
- {
- template< typename Pair, typename T > struct apply
- : apply2<
- typename Pair::first
- , typename Pair::second
- , T
- >
- {
- };
- };
- }}}
- #endif
|