[libcxx-commits] [libcxx] 4f8ea3c - [SystemZ][z/OS][NFC] Remove extra symbol

Muiez Ahmed via libcxx-commits libcxx-commits at lists.llvm.org
Fri Jan 21 13:20:59 PST 2022


Author: Muiez Ahmed
Date: 2022-01-21T16:18:46-05:00
New Revision: 4f8ea3c84f3de6ddb754ad339c4672c7e3b7fc74

URL: https://github.com/llvm/llvm-project/commit/4f8ea3c84f3de6ddb754ad339c4672c7e3b7fc74
DIFF: https://github.com/llvm/llvm-project/commit/4f8ea3c84f3de6ddb754ad339c4672c7e3b7fc74.diff

LOG: [SystemZ][z/OS][NFC] Remove extra symbol

Added: 
    

Modified: 
    libcxx/include/__locale

Removed: 
    


################################################################################
diff  --git a/libcxx/include/__locale b/libcxx/include/__locale
index 6181f2539475d..98445bd2d8f40 100644
--- a/libcxx/include/__locale
+++ b/libcxx/include/__locale
@@ -512,8 +512,7 @@ public:
 # define _LIBCPP_CTYPE_MASK_IS_COMPOSITE_ALPHA
 # define _LIBCPP_CTYPE_MASK_IS_COMPOSITE_XDIGIT
 #elif defined(__MVS__)
-    static const mask __regex_word = 0x8000;
-# if defined(__NATIVE_ASCII_F)`
+# if defined(__NATIVE_ASCII_F)
     typedef unsigned int mask;
     static const mask space  = _ISSPACE_A;
     static const mask print  = _ISPRINT_A;
@@ -538,6 +537,7 @@ public:
     static const mask xdigit = __ISXDIGIT;
     static const mask blank  = __ISBLANK;
 # endif
+    static const mask __regex_word = 0x8000;
 #else
 # error unknown rune table for this platform -- do you mean to define _LIBCPP_PROVIDES_DEFAULT_RUNE_TABLE?
 #endif


        


More information about the libcxx-commits mailing list