mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-10-04 13:41:02 +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
12
third_party/libcxx/__concepts/assignable.h
vendored
12
third_party/libcxx/__concepts/assignable.h
vendored
|
@ -26,13 +26,13 @@ _LIBCPP_BEGIN_NAMESPACE_STD
|
|||
|
||||
// [concept.assignable]
|
||||
|
||||
template<class _Lhs, class _Rhs>
|
||||
template <class _Lhs, class _Rhs>
|
||||
concept assignable_from =
|
||||
is_lvalue_reference_v<_Lhs> &&
|
||||
common_reference_with<__make_const_lvalue_ref<_Lhs>, __make_const_lvalue_ref<_Rhs>> &&
|
||||
requires (_Lhs __lhs, _Rhs&& __rhs) {
|
||||
{ __lhs = _VSTD::forward<_Rhs>(__rhs) } -> same_as<_Lhs>;
|
||||
};
|
||||
is_lvalue_reference_v<_Lhs> &&
|
||||
common_reference_with<__make_const_lvalue_ref<_Lhs>, __make_const_lvalue_ref<_Rhs>> &&
|
||||
requires(_Lhs __lhs, _Rhs&& __rhs) {
|
||||
{ __lhs = std::forward<_Rhs>(__rhs) } -> same_as<_Lhs>;
|
||||
};
|
||||
|
||||
#endif // _LIBCPP_STD_VER >= 20
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue