🐞 Issue Description
While building the project with Clang and the project version of {fmt}, compilation fails in certain sections of format.cc and related files. The issue appears in the following code fragments:
if (message.size() <= inline_buffer_size - error_code_size)
format_to(it, FMT_STRING("{}{}"), message, SEP);
format_to(it, FMT_STRING("{}{}"), ERROR_STR, error_code);
FMT_ASSERT(out.size() <= inline_buffer_size, "");
🐞 Issue Description
While building the project with Clang and the project version of {fmt}, compilation fails in certain sections of
format.ccand related files. The issue appears in the following code fragments: