| 99 | #if BOOST_CONTROL_RATIONAL_HAS_GCD |
| 100 | template <typename IntType> |
| 101 | IntType gcd(IntType n, IntType m) |
| 102 | { |
| 103 | // Defer to the version in Boost.Integer |
| 104 | return integer::gcd( n, m ); |
| 105 | } |
| 106 | |
| 107 | template <typename IntType> |
| 108 | IntType lcm(IntType n, IntType m) |
no outgoing calls