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