mirror of
https://review.haiku-os.org/buildtools
synced 2024-11-23 07:18:49 +01:00
gcc: add missing mask blank in ctype_base.h
This commit is contained in:
parent
7c77083396
commit
cf9f358f9e
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user