gcc: add missing mask blank in ctype_base.h

This commit is contained in:
Jérôme Duval 2016-03-04 18:01:05 +01:00
parent 7c77083396
commit cf9f358f9e

View File

@ -52,6 +52,9 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
static const mask cntrl = 1 << 8;
static const mask punct = 1 << 9;
static const mask alnum = (1 << 2) | (1 << 3); // alpha|digit
#if __cplusplus >= 201103L
static const mask blank = 1 << 10;
#endif
};
_GLIBCXX_END_NAMESPACE_VERSION