| 304 | #ifdef BOOST_MP_HAS_FLOAT128_SUPPORT |
| 305 | template <class Float> |
| 306 | typename std::enable_if<std::is_same<Float, float128_type>::value && (std::numeric_limits<Float>::digits > Digits), cpp_bin_float&>::type assign_float(Float f) |
| 307 | { |
| 308 | cpp_bin_float<113, DigitBase, Allocator, Exponent, MinExponent, MaxExponent> bf(f); |
| 309 | return *this = bf; |
| 310 | } |
| 311 | template <class Float> |
| 312 | typename std::enable_if<std::is_same<Float, float128_type>::value && (std::numeric_limits<Float>::digits <= Digits), cpp_bin_float&>::type assign_float(Float f) |
| 313 | { |
no test coverage detected