Release Cosmopolitan v3.6.0

This release is an atomic upgrade to GCC 14.1.0 with C23 and C++23
This commit is contained in:
Justine Tunney 2024-07-23 03:16:17 -07:00
parent 62ace3623a
commit 5660ec4741
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
1585 changed files with 117353 additions and 271644 deletions

View file

@ -129,33 +129,40 @@ namespace std {
*/
#include <__assert> // all public C++ headers provide the assertion handler
#include <__concepts/arithmetic.h>
#include <__concepts/assignable.h>
#include <__concepts/boolean_testable.h>
#include <__concepts/class_or_enum.h>
#include <__concepts/common_reference_with.h>
#include <__concepts/common_with.h>
#include <__concepts/constructible.h>
#include <__concepts/convertible_to.h>
#include <__concepts/copyable.h>
#include <__concepts/derived_from.h>
#include <__concepts/destructible.h>
#include <__concepts/different_from.h>
#include <__concepts/equality_comparable.h>
#include <__concepts/invocable.h>
#include <__concepts/movable.h>
#include <__concepts/predicate.h>
#include <__concepts/regular.h>
#include <__concepts/relation.h>
#include <__concepts/same_as.h>
#include <__concepts/semiregular.h>
#include <__concepts/swappable.h>
#include <__concepts/totally_ordered.h>
#include <__config>
#if _LIBCPP_STD_VER >= 20
# include <__concepts/arithmetic.h>
# include <__concepts/assignable.h>
# include <__concepts/boolean_testable.h>
# include <__concepts/class_or_enum.h>
# include <__concepts/common_reference_with.h>
# include <__concepts/common_with.h>
# include <__concepts/constructible.h>
# include <__concepts/convertible_to.h>
# include <__concepts/copyable.h>
# include <__concepts/derived_from.h>
# include <__concepts/destructible.h>
# include <__concepts/different_from.h>
# include <__concepts/equality_comparable.h>
# include <__concepts/invocable.h>
# include <__concepts/movable.h>
# include <__concepts/predicate.h>
# include <__concepts/regular.h>
# include <__concepts/relation.h>
# include <__concepts/same_as.h>
# include <__concepts/semiregular.h>
# include <__concepts/swappable.h>
# include <__concepts/totally_ordered.h>
#endif // _LIBCPP_STD_VER >= 20
#include <version>
#if _LIBCPP_STD_VER <= 20 && !defined(_LIPCPP_REMOVE_TRANSITIVE_INCLUDES)
#if !defined(_LIBCPP_REMOVE_TRANSITIVE_INCLUDES) && _LIBCPP_STD_VER <= 17
# include <cstddef>
#endif
#if _LIBCPP_STD_VER <= 20 && !defined(_LIBCPP_REMOVE_TRANSITIVE_INCLUDES)
# include <type_traits>
#endif