⛏️ index : buildtools.git

author Jérôme Duval <jerome.duval@gmail.com> 2016-03-04 18:01:05.0 +01:00:00
committer Jérôme Duval <jerome.duval@gmail.com> 2016-03-04 18:01:05.0 +01:00:00
commit
cf9f358f9e8e80927bc94524c9fdbaeba4c869cb [patch]
tree
1dce592a724b42dbab502c8b81340b4c19d470f0
parent
7c77083396e35ccf490da189f725ba2a8a511348
download
cf9f358f9e8e80927bc94524c9fdbaeba4c869cb.tar.gz

gcc: add missing mask blank in ctype_base.h



Diff

 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
+++ a/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