| 3158 | |
| 3159 | template <unsigned Digits10, class ExponentType, class Allocator> |
| 3160 | inline void eval_add(cpp_dec_float<Digits10, ExponentType, Allocator>& result, const cpp_dec_float<Digits10, ExponentType, Allocator>& o) |
| 3161 | { |
| 3162 | result += o; |
| 3163 | } |
| 3164 | template <unsigned Digits10, class ExponentType, class Allocator> |
| 3165 | inline void eval_subtract(cpp_dec_float<Digits10, ExponentType, Allocator>& result, const cpp_dec_float<Digits10, ExponentType, Allocator>& o) |
| 3166 | { |
no test coverage detected