Skip to content

Commit

Permalink
Update utils.h
Browse files Browse the repository at this point in the history
  • Loading branch information
MacroModel authored Jun 15, 2024
1 parent 50331d0 commit adc5833
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions include/fast_io_core_impl/utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,15 @@ concept my_floating_point = ::std::floating_point<T>
#endif
#ifdef __SIZEOF_FLOAT128__
|| ::std::same_as<::std::remove_cv_t<T>, __float128>
#endif
#ifdef __STDCPP_BFLOAT16_T__
|| ::std::same_as<::std::remove_cv_t<T>, decltype(0.0bf16)>
#endif
#ifdef __STDCPP_FLOAT32_T__
|| ::std::same_as<::std::remove_cv_t<T>, _Float32>
#endif
#ifdef __STDCPP_FLOAT64_T__
|| ::std::same_as<::std::remove_cv_t<T>, _Float64>
#endif
;

Expand Down

0 comments on commit adc5833

Please sign in to comment.