123456789101112131415161718192021222324252627282930 |
- #ifndef BOOST_RATIO_MPL_ABS_HPP
- #define BOOST_RATIO_MPL_ABS_HPP
- #include <boost/ratio/ratio.hpp>
- #include <boost/ratio/mpl/numeric_cast.hpp>
- #include <boost/ratio/detail/mpl/abs.hpp>
- namespace boost {
- namespace mpl {
- template<>
- struct abs_impl< rational_c_tag >
- {
- template< typename R > struct apply
- : ratio_abs<R>
- {
- };
- };
- }
- }
- #endif
|