From cf9f358f9e8e80927bc94524c9fdbaeba4c869cb Mon Sep 17 00:00:00 2001 From: Jérôme Duval Date: Fri, 04 Mar 2016 18:01:05 +0100 Subject: [PATCH] gcc: add missing mask blank in ctype_base.h --- gcc/libstdc++-v3/config/os/haiku/ctype_base.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gcc/libstdc++-v3/config/os/haiku/ctype_base.h b/gcc/libstdc++-v3/config/os/haiku/ctype_base.h index 9ced1e4..86e15cb 100644 --- a/gcc/libstdc++-v3/config/os/haiku/ctype_base.h +++ b/gcc/libstdc++-v3/config/os/haiku/ctype_base.h @@ -52,6 +52,9 @@ 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 -- gitore 0.2.2