@@ -202,7 +202,6 @@ clinger_fast_path_impl(am_mant_t const mantissa, am_pow_t const exponent,
202202 bool const is_negative,
203203#endif
204204 T &value) noexcept {
205-
206205 // The implementation of the Clinger's fast path is convoluted because
207206 // we want round-to-nearest in all cases, irrespective of the rounding mode
208207 // selected on the thread.
@@ -323,7 +322,6 @@ template <typename T, typename UC>
323322FASTFLOAT_CONSTEXPR20 from_chars_result_t <UC>
324323from_chars_float_advanced (UC const *first, UC const *last, T &value,
325324 parse_options_t <UC> const options) noexcept {
326-
327325 static_assert (is_supported_float_type<T>::value,
328326 " only some floating-point types are supported" );
329327 static_assert (is_supported_char_type<UC>::value,
@@ -377,7 +375,6 @@ from_chars_float_advanced(UC const *first, UC const *last, T &value,
377375template <typename T, typename UC, typename >
378376FASTFLOAT_CONSTEXPR20 from_chars_result_t <UC>
379377from_chars (UC const *first, UC const *last, T &value, int const base) noexcept {
380-
381378 static_assert (is_supported_integer_type<T>::value,
382379 " only integer types are supported" );
383380 static_assert (is_supported_char_type<UC>::value,
@@ -498,7 +495,6 @@ template <typename T, typename UC>
498495FASTFLOAT_CONSTEXPR20 from_chars_result_t <UC>
499496from_chars_int_advanced (UC const *first, UC const *last, T &value,
500497 parse_options_t <UC> const options) noexcept {
501-
502498 static_assert (is_supported_integer_type<T>::value,
503499 " only integer types are supported" );
504500 static_assert (is_supported_char_type<UC>::value,
0 commit comments