diff options
Diffstat (limited to 'libcxx/include/regex')
-rw-r--r-- | libcxx/include/regex | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libcxx/include/regex b/libcxx/include/regex index f1f3264d320..1139d8fb2a9 100644 --- a/libcxx/include/regex +++ b/libcxx/include/regex @@ -976,7 +976,12 @@ public: typedef locale locale_type; typedef ctype_base::mask char_class_type; +#if defined(__mips__) && defined(__GLIBC__) + static const char_class_type __regex_word = static_cast<char_class_type>(_ISbit(15)); +#else static const char_class_type __regex_word = 0x80; +#endif + private: locale __loc_; const ctype<char_type>* __ct_; |