| 3129 | |
| 3130 | template <unsigned Digits10, class ExponentType, class Allocator> |
| 3131 | inline void eval_add(cpp_dec_float<Digits10, ExponentType, Allocator>& result, const cpp_dec_float<Digits10, ExponentType, Allocator>& o) |
| 3132 | { |
| 3133 | result += o; |
| 3134 | } |
| 3135 | template <unsigned Digits10, class ExponentType, class Allocator> |
| 3136 | inline void eval_subtract(cpp_dec_float<Digits10, ExponentType, Allocator>& result, const cpp_dec_float<Digits10, ExponentType, Allocator>& o) |
| 3137 | { |
no test coverage detected