mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-02 18:52:29 +00:00
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:
parent
62ace3623a
commit
5660ec4741
1585 changed files with 117353 additions and 271644 deletions
29
third_party/libcxx/__concepts/constructible.h
vendored
29
third_party/libcxx/__concepts/constructible.h
vendored
|
@ -23,31 +23,30 @@ _LIBCPP_BEGIN_NAMESPACE_STD
|
|||
#if _LIBCPP_STD_VER >= 20
|
||||
|
||||
// [concept.constructible]
|
||||
template<class _Tp, class... _Args>
|
||||
concept constructible_from =
|
||||
destructible<_Tp> && is_constructible_v<_Tp, _Args...>;
|
||||
template <class _Tp, class... _Args>
|
||||
concept constructible_from = destructible<_Tp> && is_constructible_v<_Tp, _Args...>;
|
||||
|
||||
// [concept.default.init]
|
||||
|
||||
template<class _Tp>
|
||||
template <class _Tp>
|
||||
concept __default_initializable = requires { ::new _Tp; };
|
||||
|
||||
template<class _Tp>
|
||||
concept default_initializable = constructible_from<_Tp> &&
|
||||
requires { _Tp{}; } && __default_initializable<_Tp>;
|
||||
template <class _Tp>
|
||||
concept default_initializable = constructible_from<_Tp> && requires { _Tp{}; } && __default_initializable<_Tp>;
|
||||
|
||||
// [concept.moveconstructible]
|
||||
template<class _Tp>
|
||||
concept move_constructible =
|
||||
constructible_from<_Tp, _Tp> && convertible_to<_Tp, _Tp>;
|
||||
template <class _Tp>
|
||||
concept move_constructible = constructible_from<_Tp, _Tp> && convertible_to<_Tp, _Tp>;
|
||||
|
||||
// [concept.copyconstructible]
|
||||
template<class _Tp>
|
||||
// clang-format off
|
||||
template <class _Tp>
|
||||
concept copy_constructible =
|
||||
move_constructible<_Tp> &&
|
||||
constructible_from<_Tp, _Tp&> && convertible_to<_Tp&, _Tp> &&
|
||||
constructible_from<_Tp, const _Tp&> && convertible_to<const _Tp&, _Tp> &&
|
||||
constructible_from<_Tp, const _Tp> && convertible_to<const _Tp, _Tp>;
|
||||
move_constructible<_Tp> &&
|
||||
constructible_from<_Tp, _Tp&> && convertible_to<_Tp&, _Tp> &&
|
||||
constructible_from<_Tp, const _Tp&> && convertible_to<const _Tp&, _Tp> &&
|
||||
constructible_from<_Tp, const _Tp> && convertible_to<const _Tp, _Tp>;
|
||||
// clang-format on
|
||||
|
||||
#endif // _LIBCPP_STD_VER >= 20
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue