
This patch implements the forwarding to frozen C++03 headers as discussed in https://discourse.llvm.org/t/rfc-freezing-c-03-headers-in-libc. In the RFC, we initially proposed selecting the right headers from the Clang driver, however consensus seemed to steer towards handling this in the library itself. This patch implements that direction. At a high level, the changes basically amount to making each public header look like this: ``` // inside <vector> #ifdef _LIBCPP_CXX03_LANG # include <__cxx03/vector> #else // normal <vector> content #endif ``` In most cases, public headers are simple umbrella headers so there isn't much code in the #else branch. In other cases, the #else branch contains the actual implementation of the header.
32 lines
888 B
C++
32 lines
888 B
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// test <cstdalign> // deprecated in C++17, removed in C++20, but still provided by libc++ as an extension
|
|
|
|
// ADDITIONAL_COMPILE_FLAGS: -D_LIBCPP_DISABLE_DEPRECATION_WARNINGS
|
|
|
|
// XFAIL: FROZEN-CXX03-HEADERS-FIXME
|
|
|
|
#include <cstdalign>
|
|
|
|
#ifndef __alignas_is_defined
|
|
# error __alignas_is_defined not defined
|
|
#endif
|
|
|
|
#ifndef __alignof_is_defined
|
|
# error __alignof_is_defined not defined
|
|
#endif
|
|
|
|
#ifdef alignas
|
|
# error alignas should not be defined
|
|
#endif
|
|
|
|
#ifdef alignof
|
|
# error alignof should not be defined
|
|
#endif
|