| 3210 | |
| 3211 | template <unsigned Digits10, class ExponentType, class Allocator> |
| 3212 | inline void eval_convert_to(unsigned long long* result, const cpp_dec_float<Digits10, ExponentType, Allocator>& val) |
| 3213 | { |
| 3214 | *result = val.extract_unsigned_long_long(); |
| 3215 | } |
| 3216 | template <unsigned Digits10, class ExponentType, class Allocator> |
| 3217 | inline void eval_convert_to(long long* result, const cpp_dec_float<Digits10, ExponentType, Allocator>& val) |
| 3218 | { |
no test coverage detected