1234567891011121314151617181920212223242526272829303132 |
- #ifndef BOOST_MPL_SET_SET0_C_HPP_INCLUDED
- #define BOOST_MPL_SET_SET0_C_HPP_INCLUDED
- #include <boost/mpl/set/set0.hpp>
- #include <boost/mpl/integral_c.hpp>
- namespace boost { namespace mpl {
- template< typename T > struct set0_c
- : set0<>
- {
- typedef set0_c type;
- typedef T value_type;
- };
- }}
- #endif
|