[libcxx-commits] [libcxx] [libc++] Fix C++23 standard modules when using with `clang-cl` on Windows (PR #148992)

via libcxx-commits libcxx-commits at lists.llvm.org
Sat Jul 19 19:22:12 PDT 2025


================
@@ -14,15 +14,17 @@ export {
 
   using ::timespec _LIBCPP_USING_IF_EXISTS;
   using ::tm _LIBCPP_USING_IF_EXISTS;
-
   using ::asctime _LIBCPP_USING_IF_EXISTS;
   using ::clock _LIBCPP_USING_IF_EXISTS;
+  using ::strftime _LIBCPP_USING_IF_EXISTS;
+
+#ifndef _LIBCPP_ABI_VCRUNTIME
----------------
siradam7th wrote:

> Also, it seem that we should modify this line `libcxx/utils/libcxx/test/features.py` to enable the tests:
> 
> https://github.com/llvm/llvm-project/blob/968d38d1d7d9de2d5717457876bba2663b36f620/libcxx/utils/libcxx/test/features.py#L330

Is just removing that line enough?

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


More information about the libcxx-commits mailing list