Try to force appleclang to use correct function
This commit is contained in:
parent
255b9fbbb3
commit
880e63cf07
@ -2091,12 +2091,12 @@ format_description
|
|||||||
{
|
{
|
||||||
appendNewLine = false;
|
appendNewLine = false;
|
||||||
|
|
||||||
if (std::isblank(*previous, std::locale::classic()))
|
if (std::isblank<char>(*previous, std::locale::classic()))
|
||||||
{
|
{
|
||||||
lastSpace = current;
|
lastSpace = current;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!std::isblank(*current, std::locale::classic()))
|
if (!std::isblank<char>(*current, std::locale::classic()))
|
||||||
{
|
{
|
||||||
onlyWhiteSpace = false;
|
onlyWhiteSpace = false;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user