[libcxx-commits] [libcxx] [libcxx][test][AIX] Fix the thousands_sep expectation for fr_FR locales (PR #92312)

Mark de Wever via libcxx-commits libcxx-commits at lists.llvm.org
Thu May 16 09:18:13 PDT 2024


================
@@ -77,11 +76,13 @@ int main(int, char**)
         {
 #if defined(_CS_GNU_LIBC_VERSION)
             const wchar_t wsep = glibc_version_less_than("2.27") ? L' ' : L'\u202f';
-#elif defined(_WIN32)
-            const wchar_t wsep = L'\u00A0';
-#else
-            const wchar_t wsep = L',';
-#endif
+#  elif defined(_AIX)
+          const wchar_t wsep = L'\u202f';
----------------
mordante wrote:

For consistency
```suggestion
          const wchar_t wsep = L'\u202F';
```

https://github.com/llvm/llvm-project/pull/92312


More information about the libcxx-commits mailing list