| 3144 | } |
| 3145 | template <unsigned Digits10, class ExponentType, class Allocator> |
| 3146 | inline void eval_divide(cpp_dec_float<Digits10, ExponentType, Allocator>& result, const cpp_dec_float<Digits10, ExponentType, Allocator>& o) |
| 3147 | { |
| 3148 | result /= o; |
| 3149 | } |
| 3150 | |
| 3151 | template <unsigned Digits10, class ExponentType, class Allocator> |
| 3152 | inline void eval_add(cpp_dec_float<Digits10, ExponentType, Allocator>& result, const unsigned long long& o) |
no test coverage detected