Try to force appleclang to use correct function

This commit is contained in:
Stefan Hillmich 2022-09-12 09:50:58 +02:00
parent 255b9fbbb3
commit 880e63cf07

View File

@ -2091,12 +2091,12 @@ format_description
{
appendNewLine = false;
if (std::isblank(*previous, std::locale::classic()))
if (std::isblank<char>(*previous, std::locale::classic()))
{
lastSpace = current;
}
if (!std::isblank(*current, std::locale::classic()))
if (!std::isblank<char>(*current, std::locale::classic()))
{
onlyWhiteSpace = false;
}