| 3168 | } |
| 3169 | template <unsigned Digits10, class ExponentType, class Allocator> |
| 3170 | inline void eval_multiply(cpp_dec_float<Digits10, ExponentType, Allocator>& result, const cpp_dec_float<Digits10, ExponentType, Allocator>& o) |
| 3171 | { |
| 3172 | result *= o; |
| 3173 | } |
| 3174 | template <unsigned Digits10, class ExponentType, class Allocator> |
| 3175 | inline void eval_divide(cpp_dec_float<Digits10, ExponentType, Allocator>& result, const cpp_dec_float<Digits10, ExponentType, Allocator>& o) |
| 3176 | { |
no test coverage detected