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 5d7491a commit 27129d4Copy full SHA for 27129d4
libcxx/include/__configuration/platform.h
@@ -53,6 +53,13 @@
53
_LIBCPP_PICOLIBC_VERSION_INT(maj, min, patch)
54
#endif
55
56
+#if __has_include(<corecrt.h>)
57
+# include <corecrt.h>
58
+# if defined(_UCRT)
59
+# define _LIBCPP_UCRT
60
+# endif
61
+#endif
62
+
63
#ifndef __BYTE_ORDER__
64
# error \
65
"Your compiler doesn't seem to define __BYTE_ORDER__, which is required by libc++ to know the endianness of your target platform"
0 commit comments