The recent change in #364 used std::isblank(charT, locale) from the header locale but did not include this header. Instead it included cctype which only provides std::isblank(int). This caused a break for Xcode (see discussion in #364).
This tiny PR adds the required #include<locale>. (It might be worthwhile to switch all functions from cctype to locale.)
The recent change in #364 used
std::isblank(charT, locale)
from the headerlocale
but did not include this header. Instead it includedcctype
which only providesstd::isblank(int)
. This caused a break for Xcode (see discussion in #364).This tiny PR adds the required
#include<locale>
. (It might be worthwhile to switch all functions fromcctype
tolocale
.)This change is