Improve handling of unformattable args

This commit is contained in:
Victor Zverovich
2024-09-16 18:52:18 -07:00
parent 527e98e3f8
commit 4197727712
2 changed files with 19 additions and 20 deletions

View File

@ -779,7 +779,7 @@ using is_integer =
#if FMT_USE_FLOAT128
using float128 = __float128;
#else
using float128 = void;
struct float128 {};
#endif
template <typename T> using is_float128 = std::is_same<T, float128>;