12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #ifndef BOOST_RATIO_RATIO_HPP
- #define BOOST_RATIO_RATIO_HPP
- #include <boost/ratio/ratio_fwd.hpp>
- #include <boost/ratio/detail/gcd_lcm.hpp>
- namespace boost
- {
- template <class R1, class R2> using ratio_gcd = typename ratio<
- ratio_detail::gcd<R1::num, R2::num>::value,
- ratio_detail::lcm<R1::den, R2::den>::value>::type;
- }
- #endif
|