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

via libcxx-commits libcxx-commits at lists.llvm.org
Mon Jan 13 11:02:23 PST 2025


Author: Sean Perry
Date: 2025-01-13T14:02:20-05:00
New Revision: b3ad84b534bf17311b92fbfe142c0542c6e95332

URL: https://github.com/llvm/llvm-project/commit/b3ad84b534bf17311b92fbfe142c0542c6e95332
DIFF: https://github.com/llvm/llvm-project/commit/b3ad84b534bf17311b92fbfe142c0542c6e95332.diff

LOG: [libc++][z/OS] __cxx03 subdir was added by mistake (#122763)

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

Added: 
    

Modified: 
    libcxx/include/__cxx03/__config

Removed: 
    


################################################################################
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