123456789101112131415161718192021222324252627 |
- #ifndef BOOST_NUMERIC_CONVERSION_IS_SUBRANGED_FLC_12NOV2002_HPP
- #define BOOST_NUMERIC_CONVERSION_IS_SUBRANGED_FLC_12NOV2002_HPP
- #include "boost/numeric/conversion/detail/is_subranged.hpp"
- namespace boost { namespace numeric {
- template<class T, class S>
- struct is_subranged
- : convdetail::get_is_subranged< BOOST_DEDUCED_TYPENAME remove_cv<T>::type
- ,BOOST_DEDUCED_TYPENAME remove_cv<S>::type
- >::type {} ;
- } }
- #endif
|