[libcxx-commits] [libcxx] 38dbcbd - [libcxx] Use the default rune table when using the LLVM libc (#106632)
via libcxx-commits
libcxx-commits at lists.llvm.org
Sat Aug 31 05:07:55 PDT 2024
Author: Joseph Huber
Date: 2024-08-31T07:07:52-05:00
New Revision: 38dbcbdcb433265fcee63236ddf3ee25c0760b27
URL: https://github.com/llvm/llvm-project/commit/38dbcbdcb433265fcee63236ddf3ee25c0760b27
DIFF: https://github.com/llvm/llvm-project/commit/38dbcbdcb433265fcee63236ddf3ee25c0760b27.diff
LOG: [libcxx] Use the default rune table when using the LLVM libc (#106632)
Summary:
We currently do not provide a more complicated rune table, so we want
the
default.
Added:
Modified:
libcxx/include/__config
Removed:
################################################################################
diff --git a/libcxx/include/__config b/libcxx/include/__config
index 9dd8d46b48d28f..b8ec905a5cbfa6 100644
--- a/libcxx/include/__config
+++ b/libcxx/include/__config
@@ -888,7 +888,7 @@ typedef __char32_t char32_t;
# endif
# if defined(__BIONIC__) || defined(__NuttX__) || defined(__Fuchsia__) || defined(__wasi__) || \
- defined(_LIBCPP_HAS_MUSL_LIBC) || defined(__OpenBSD__)
+ defined(_LIBCPP_HAS_MUSL_LIBC) || defined(__OpenBSD__) || defined(__LLVM_LIBC__)
# define _LIBCPP_PROVIDES_DEFAULT_RUNE_TABLE
# endif
More information about the libcxx-commits
mailing list