[libcxx-commits] [libcxx] [z/OS] __cxx03 subdir was added by mistake (PR #122763)

Sean Perry via libcxx-commits libcxx-commits at lists.llvm.org
Mon Jan 13 10:37:01 PST 2025


https://github.com/perry-ca created https://github.com/llvm/llvm-project/pull/122763

The header <features.h> is a system header.  It's not part of the headers in __cxx03.

>From 2c73254b8c14ef1f52d2b045df94fa734b7269a6 Mon Sep 17 00:00:00 2001
From: Sean Perry <perry at ca.ibm.com>
Date: Mon, 13 Jan 2025 13:34:15 -0500
Subject: [PATCH] __cxx03 subdir was added by mistake

---
 libcxx/include/__cxx03/__config | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libcxx/include/__cxx03/__config b/libcxx/include/__cxx03/__config
index 3e8f181664c975..880d14a50a0525 100644
--- a/libcxx/include/__cxx03/__config
+++ b/libcxx/include/__cxx03/__config
@@ -230,7 +230,7 @@ _LIBCPP_HARDENING_MODE_DEBUG
 #  endif
 
 #  if defined(__MVS__)
-#    include <__cxx03/features.h> // for __NATIVE_ASCII_F
+#    include <features.h> // for __NATIVE_ASCII_F
 #  endif
 
 #  if defined(_WIN32)



More information about the libcxx-commits mailing list