We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d87631 commit 91ea91eCopy full SHA for 91ea91e
libcxx/include/__config
@@ -1023,6 +1023,8 @@ typedef __char32_t char32_t;
1023
// defined are ignored.
1024
//
1025
// picolibc 1.8.9 and newer declare the two functions unconditionally.
1026
+//
1027
+// Microsoft C Runtime and Apple C library do not yet support these functions.
1028
# if defined(_LIBCPP_GLIBC_PREREQ)
1029
# if defined(__cpp_char8_t) && _LIBCPP_GLIBC_PREREQ(2, 36)
1030
# define _LIBCPP_HAS_C8RTOMB_MBRTOC8 1
@@ -1035,6 +1037,8 @@ typedef __char32_t char32_t;
1035
1037
# else
1036
1038
# define _LIBCPP_HAS_C8RTOMB_MBRTOC8 0
1039
# endif
1040
+# elif defined(__APPLE__) || defined(_MSC_VER)
1041
+# define _LIBCPP_HAS_C8RTOMB_MBRTOC8 0
1042
1043
1044
0 commit comments