mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-03 19:22:27 +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
327
third_party/libcxx/__memory/allocator.h
vendored
327
third_party/libcxx/__memory/allocator.h
vendored
|
@ -14,6 +14,7 @@
|
|||
#include <__memory/addressof.h>
|
||||
#include <__memory/allocate_at_least.h>
|
||||
#include <__memory/allocator_traits.h>
|
||||
#include <__type_traits/is_const.h>
|
||||
#include <__type_traits/is_constant_evaluated.h>
|
||||
#include <__type_traits/is_same.h>
|
||||
#include <__type_traits/is_void.h>
|
||||
|
@ -28,37 +29,41 @@
|
|||
|
||||
_LIBCPP_BEGIN_NAMESPACE_STD
|
||||
|
||||
template <class _Tp> class allocator;
|
||||
template <class _Tp>
|
||||
class allocator;
|
||||
|
||||
#if _LIBCPP_STD_VER <= 17 || defined(_LIBCPP_ENABLE_CXX20_REMOVED_ALLOCATOR_VOID_SPECIALIZATION)
|
||||
#if _LIBCPP_STD_VER <= 17
|
||||
// These specializations shouldn't be marked _LIBCPP_DEPRECATED_IN_CXX17.
|
||||
// Specializing allocator<void> is deprecated, but not using it.
|
||||
template <>
|
||||
class _LIBCPP_TEMPLATE_VIS allocator<void>
|
||||
{
|
||||
#if _LIBCPP_STD_VER <= 17 || defined(_LIBCPP_ENABLE_CXX20_REMOVED_ALLOCATOR_MEMBERS)
|
||||
class _LIBCPP_TEMPLATE_VIS allocator<void> {
|
||||
public:
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef void* pointer;
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef const void* const_pointer;
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef void value_type;
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef void* pointer;
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef const void* const_pointer;
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef void value_type;
|
||||
|
||||
template <class _Up> struct _LIBCPP_DEPRECATED_IN_CXX17 rebind {typedef allocator<_Up> other;};
|
||||
#endif
|
||||
template <class _Up>
|
||||
struct _LIBCPP_DEPRECATED_IN_CXX17 rebind {
|
||||
typedef allocator<_Up> other;
|
||||
};
|
||||
};
|
||||
|
||||
// TODO(LLVM 20): Remove the escape hatch
|
||||
# ifdef _LIBCPP_ENABLE_REMOVED_ALLOCATOR_CONST
|
||||
template <>
|
||||
class _LIBCPP_TEMPLATE_VIS allocator<const void>
|
||||
{
|
||||
#if _LIBCPP_STD_VER <= 17 || defined(_LIBCPP_ENABLE_CXX20_REMOVED_ALLOCATOR_MEMBERS)
|
||||
class _LIBCPP_TEMPLATE_VIS allocator<const void> {
|
||||
public:
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef const void* pointer;
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef const void* const_pointer;
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef const void value_type;
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef const void* pointer;
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef const void* const_pointer;
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef const void value_type;
|
||||
|
||||
template <class _Up> struct _LIBCPP_DEPRECATED_IN_CXX17 rebind {typedef allocator<_Up> other;};
|
||||
#endif
|
||||
template <class _Up>
|
||||
struct _LIBCPP_DEPRECATED_IN_CXX17 rebind {
|
||||
typedef allocator<_Up> other;
|
||||
};
|
||||
};
|
||||
#endif
|
||||
# endif // _LIBCPP_ENABLE_REMOVED_ALLOCATOR_CONST
|
||||
#endif // _LIBCPP_STD_VER <= 17
|
||||
|
||||
// This class provides a non-trivial default constructor to the class that derives from it
|
||||
// if the condition is satisfied.
|
||||
|
@ -73,12 +78,11 @@ public:
|
|||
// By making those __non_trivial_if base classes unique, we work around this problem and
|
||||
// it is safe to start deriving from __non_trivial_if in existing classes.
|
||||
template <bool _Cond, class _Unique>
|
||||
struct __non_trivial_if { };
|
||||
struct __non_trivial_if {};
|
||||
|
||||
template <class _Unique>
|
||||
struct __non_trivial_if<true, _Unique> {
|
||||
_LIBCPP_INLINE_VISIBILITY
|
||||
_LIBCPP_CONSTEXPR __non_trivial_if() _NOEXCEPT { }
|
||||
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR __non_trivial_if() _NOEXCEPT {}
|
||||
};
|
||||
|
||||
// allocator
|
||||
|
@ -87,184 +91,177 @@ struct __non_trivial_if<true, _Unique> {
|
|||
// allocator<void> trivial in C++20.
|
||||
|
||||
template <class _Tp>
|
||||
class _LIBCPP_TEMPLATE_VIS allocator
|
||||
: private __non_trivial_if<!is_void<_Tp>::value, allocator<_Tp> >
|
||||
{
|
||||
static_assert(!is_volatile<_Tp>::value, "std::allocator does not support volatile types");
|
||||
class _LIBCPP_TEMPLATE_VIS allocator : private __non_trivial_if<!is_void<_Tp>::value, allocator<_Tp> > {
|
||||
static_assert(!is_const<_Tp>::value, "std::allocator does not support const types");
|
||||
static_assert(!is_volatile<_Tp>::value, "std::allocator does not support volatile types");
|
||||
|
||||
public:
|
||||
typedef size_t size_type;
|
||||
typedef ptrdiff_t difference_type;
|
||||
typedef _Tp value_type;
|
||||
typedef true_type propagate_on_container_move_assignment;
|
||||
typedef true_type is_always_equal;
|
||||
|
||||
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 allocator() _NOEXCEPT = default;
|
||||
|
||||
template <class _Up>
|
||||
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX20
|
||||
allocator(const allocator<_Up>&) _NOEXCEPT { }
|
||||
|
||||
_LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX20
|
||||
_Tp* allocate(size_t __n) {
|
||||
if (__n > allocator_traits<allocator>::max_size(*this))
|
||||
__throw_bad_array_new_length();
|
||||
if (__libcpp_is_constant_evaluated()) {
|
||||
return static_cast<_Tp*>(::operator new(__n * sizeof(_Tp)));
|
||||
} else {
|
||||
return static_cast<_Tp*>(_VSTD::__libcpp_allocate(__n * sizeof(_Tp), _LIBCPP_ALIGNOF(_Tp)));
|
||||
}
|
||||
}
|
||||
|
||||
#if _LIBCPP_STD_VER >= 23
|
||||
[[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr
|
||||
allocation_result<_Tp*> allocate_at_least(size_t __n) {
|
||||
return {allocate(__n), __n};
|
||||
}
|
||||
typedef size_t size_type;
|
||||
typedef ptrdiff_t difference_type;
|
||||
typedef _Tp value_type;
|
||||
typedef true_type propagate_on_container_move_assignment;
|
||||
#if _LIBCPP_STD_VER <= 23 || defined(_LIBCPP_ENABLE_CXX26_REMOVED_ALLOCATOR_MEMBERS)
|
||||
_LIBCPP_DEPRECATED_IN_CXX23 typedef true_type is_always_equal;
|
||||
#endif
|
||||
|
||||
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX20
|
||||
void deallocate(_Tp* __p, size_t __n) _NOEXCEPT {
|
||||
if (__libcpp_is_constant_evaluated()) {
|
||||
::operator delete(__p);
|
||||
} else {
|
||||
_VSTD::__libcpp_deallocate((void*)__p, __n * sizeof(_Tp), _LIBCPP_ALIGNOF(_Tp));
|
||||
}
|
||||
}
|
||||
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 allocator() _NOEXCEPT = default;
|
||||
|
||||
// C++20 Removed members
|
||||
#if _LIBCPP_STD_VER <= 17 || defined(_LIBCPP_ENABLE_CXX20_REMOVED_ALLOCATOR_MEMBERS)
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef _Tp* pointer;
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef const _Tp* const_pointer;
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef _Tp& reference;
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef const _Tp& const_reference;
|
||||
template <class _Up>
|
||||
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 allocator(const allocator<_Up>&) _NOEXCEPT {}
|
||||
|
||||
template <class _Up>
|
||||
struct _LIBCPP_DEPRECATED_IN_CXX17 rebind {
|
||||
typedef allocator<_Up> other;
|
||||
};
|
||||
_LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 _Tp* allocate(size_t __n) {
|
||||
if (__n > allocator_traits<allocator>::max_size(*this))
|
||||
__throw_bad_array_new_length();
|
||||
if (__libcpp_is_constant_evaluated()) {
|
||||
return static_cast<_Tp*>(::operator new(__n * sizeof(_Tp)));
|
||||
} else {
|
||||
return static_cast<_Tp*>(std::__libcpp_allocate(__n * sizeof(_Tp), _LIBCPP_ALIGNOF(_Tp)));
|
||||
}
|
||||
}
|
||||
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_INLINE_VISIBILITY
|
||||
pointer address(reference __x) const _NOEXCEPT {
|
||||
return _VSTD::addressof(__x);
|
||||
}
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_INLINE_VISIBILITY
|
||||
const_pointer address(const_reference __x) const _NOEXCEPT {
|
||||
return _VSTD::addressof(__x);
|
||||
}
|
||||
#if _LIBCPP_STD_VER >= 23
|
||||
[[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr allocation_result<_Tp*> allocate_at_least(size_t __n) {
|
||||
return {allocate(__n), __n};
|
||||
}
|
||||
#endif
|
||||
|
||||
_LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_INLINE_VISIBILITY _LIBCPP_DEPRECATED_IN_CXX17
|
||||
_Tp* allocate(size_t __n, const void*) {
|
||||
return allocate(__n);
|
||||
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void deallocate(_Tp* __p, size_t __n) _NOEXCEPT {
|
||||
if (__libcpp_is_constant_evaluated()) {
|
||||
::operator delete(__p);
|
||||
} else {
|
||||
std::__libcpp_deallocate((void*)__p, __n * sizeof(_Tp), _LIBCPP_ALIGNOF(_Tp));
|
||||
}
|
||||
}
|
||||
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_INLINE_VISIBILITY size_type max_size() const _NOEXCEPT {
|
||||
return size_type(~0) / sizeof(_Tp);
|
||||
}
|
||||
// C++20 Removed members
|
||||
#if _LIBCPP_STD_VER <= 17
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef _Tp* pointer;
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef const _Tp* const_pointer;
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef _Tp& reference;
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef const _Tp& const_reference;
|
||||
|
||||
template <class _Up, class... _Args>
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_INLINE_VISIBILITY
|
||||
void construct(_Up* __p, _Args&&... __args) {
|
||||
::new ((void*)__p) _Up(_VSTD::forward<_Args>(__args)...);
|
||||
}
|
||||
template <class _Up>
|
||||
struct _LIBCPP_DEPRECATED_IN_CXX17 rebind {
|
||||
typedef allocator<_Up> other;
|
||||
};
|
||||
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_INLINE_VISIBILITY
|
||||
void destroy(pointer __p) {
|
||||
__p->~_Tp();
|
||||
}
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_HIDE_FROM_ABI pointer address(reference __x) const _NOEXCEPT {
|
||||
return std::addressof(__x);
|
||||
}
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_HIDE_FROM_ABI const_pointer address(const_reference __x) const _NOEXCEPT {
|
||||
return std::addressof(__x);
|
||||
}
|
||||
|
||||
_LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI _LIBCPP_DEPRECATED_IN_CXX17 _Tp* allocate(size_t __n, const void*) {
|
||||
return allocate(__n);
|
||||
}
|
||||
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_HIDE_FROM_ABI size_type max_size() const _NOEXCEPT {
|
||||
return size_type(~0) / sizeof(_Tp);
|
||||
}
|
||||
|
||||
template <class _Up, class... _Args>
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_HIDE_FROM_ABI void construct(_Up* __p, _Args&&... __args) {
|
||||
::new ((void*)__p) _Up(std::forward<_Args>(__args)...);
|
||||
}
|
||||
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_HIDE_FROM_ABI void destroy(pointer __p) { __p->~_Tp(); }
|
||||
#endif
|
||||
};
|
||||
|
||||
// TODO(LLVM 20): Remove the escape hatch
|
||||
#ifdef _LIBCPP_ENABLE_REMOVED_ALLOCATOR_CONST
|
||||
template <class _Tp>
|
||||
class _LIBCPP_TEMPLATE_VIS allocator<const _Tp>
|
||||
: private __non_trivial_if<!is_void<_Tp>::value, allocator<const _Tp> >
|
||||
{
|
||||
static_assert(!is_volatile<_Tp>::value, "std::allocator does not support volatile types");
|
||||
: private __non_trivial_if<!is_void<_Tp>::value, allocator<const _Tp> > {
|
||||
static_assert(!is_volatile<_Tp>::value, "std::allocator does not support volatile types");
|
||||
|
||||
public:
|
||||
typedef size_t size_type;
|
||||
typedef ptrdiff_t difference_type;
|
||||
typedef const _Tp value_type;
|
||||
typedef true_type propagate_on_container_move_assignment;
|
||||
typedef true_type is_always_equal;
|
||||
typedef size_t size_type;
|
||||
typedef ptrdiff_t difference_type;
|
||||
typedef const _Tp value_type;
|
||||
typedef true_type propagate_on_container_move_assignment;
|
||||
# if _LIBCPP_STD_VER <= 23 || defined(_LIBCPP_ENABLE_CXX26_REMOVED_ALLOCATOR_MEMBERS)
|
||||
_LIBCPP_DEPRECATED_IN_CXX23 typedef true_type is_always_equal;
|
||||
# endif
|
||||
|
||||
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 allocator() _NOEXCEPT = default;
|
||||
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 allocator() _NOEXCEPT = default;
|
||||
|
||||
template <class _Up>
|
||||
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX20
|
||||
allocator(const allocator<_Up>&) _NOEXCEPT { }
|
||||
template <class _Up>
|
||||
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 allocator(const allocator<_Up>&) _NOEXCEPT {}
|
||||
|
||||
_LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX20
|
||||
const _Tp* allocate(size_t __n) {
|
||||
if (__n > allocator_traits<allocator>::max_size(*this))
|
||||
__throw_bad_array_new_length();
|
||||
if (__libcpp_is_constant_evaluated()) {
|
||||
return static_cast<const _Tp*>(::operator new(__n * sizeof(_Tp)));
|
||||
} else {
|
||||
return static_cast<const _Tp*>(_VSTD::__libcpp_allocate(__n * sizeof(_Tp), _LIBCPP_ALIGNOF(_Tp)));
|
||||
}
|
||||
_LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 const _Tp* allocate(size_t __n) {
|
||||
if (__n > allocator_traits<allocator>::max_size(*this))
|
||||
__throw_bad_array_new_length();
|
||||
if (__libcpp_is_constant_evaluated()) {
|
||||
return static_cast<const _Tp*>(::operator new(__n * sizeof(_Tp)));
|
||||
} else {
|
||||
return static_cast<const _Tp*>(std::__libcpp_allocate(__n * sizeof(_Tp), _LIBCPP_ALIGNOF(_Tp)));
|
||||
}
|
||||
}
|
||||
|
||||
#if _LIBCPP_STD_VER >= 23
|
||||
[[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr
|
||||
allocation_result<const _Tp*> allocate_at_least(size_t __n) {
|
||||
return {allocate(__n), __n};
|
||||
# if _LIBCPP_STD_VER >= 23
|
||||
[[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr allocation_result<const _Tp*> allocate_at_least(size_t __n) {
|
||||
return {allocate(__n), __n};
|
||||
}
|
||||
# endif
|
||||
|
||||
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void deallocate(const _Tp* __p, size_t __n) {
|
||||
if (__libcpp_is_constant_evaluated()) {
|
||||
::operator delete(const_cast<_Tp*>(__p));
|
||||
} else {
|
||||
std::__libcpp_deallocate((void*)const_cast<_Tp*>(__p), __n * sizeof(_Tp), _LIBCPP_ALIGNOF(_Tp));
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX20
|
||||
void deallocate(const _Tp* __p, size_t __n) {
|
||||
if (__libcpp_is_constant_evaluated()) {
|
||||
::operator delete(const_cast<_Tp*>(__p));
|
||||
} else {
|
||||
_VSTD::__libcpp_deallocate((void*) const_cast<_Tp *>(__p), __n * sizeof(_Tp), _LIBCPP_ALIGNOF(_Tp));
|
||||
}
|
||||
}
|
||||
// C++20 Removed members
|
||||
# if _LIBCPP_STD_VER <= 17
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef const _Tp* pointer;
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef const _Tp* const_pointer;
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef const _Tp& reference;
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef const _Tp& const_reference;
|
||||
|
||||
// C++20 Removed members
|
||||
#if _LIBCPP_STD_VER <= 17 || defined(_LIBCPP_ENABLE_CXX20_REMOVED_ALLOCATOR_MEMBERS)
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef const _Tp* pointer;
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef const _Tp* const_pointer;
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef const _Tp& reference;
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 typedef const _Tp& const_reference;
|
||||
template <class _Up>
|
||||
struct _LIBCPP_DEPRECATED_IN_CXX17 rebind {
|
||||
typedef allocator<_Up> other;
|
||||
};
|
||||
|
||||
template <class _Up>
|
||||
struct _LIBCPP_DEPRECATED_IN_CXX17 rebind {
|
||||
typedef allocator<_Up> other;
|
||||
};
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_HIDE_FROM_ABI const_pointer address(const_reference __x) const _NOEXCEPT {
|
||||
return std::addressof(__x);
|
||||
}
|
||||
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_INLINE_VISIBILITY
|
||||
const_pointer address(const_reference __x) const _NOEXCEPT {
|
||||
return _VSTD::addressof(__x);
|
||||
}
|
||||
_LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI _LIBCPP_DEPRECATED_IN_CXX17 const _Tp* allocate(size_t __n, const void*) {
|
||||
return allocate(__n);
|
||||
}
|
||||
|
||||
_LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_INLINE_VISIBILITY _LIBCPP_DEPRECATED_IN_CXX17
|
||||
const _Tp* allocate(size_t __n, const void*) {
|
||||
return allocate(__n);
|
||||
}
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_HIDE_FROM_ABI size_type max_size() const _NOEXCEPT {
|
||||
return size_type(~0) / sizeof(_Tp);
|
||||
}
|
||||
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_INLINE_VISIBILITY size_type max_size() const _NOEXCEPT {
|
||||
return size_type(~0) / sizeof(_Tp);
|
||||
}
|
||||
template <class _Up, class... _Args>
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_HIDE_FROM_ABI void construct(_Up* __p, _Args&&... __args) {
|
||||
::new ((void*)__p) _Up(std::forward<_Args>(__args)...);
|
||||
}
|
||||
|
||||
template <class _Up, class... _Args>
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_INLINE_VISIBILITY
|
||||
void construct(_Up* __p, _Args&&... __args) {
|
||||
::new ((void*)__p) _Up(_VSTD::forward<_Args>(__args)...);
|
||||
}
|
||||
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_INLINE_VISIBILITY
|
||||
void destroy(pointer __p) {
|
||||
__p->~_Tp();
|
||||
}
|
||||
#endif
|
||||
_LIBCPP_DEPRECATED_IN_CXX17 _LIBCPP_HIDE_FROM_ABI void destroy(pointer __p) { __p->~_Tp(); }
|
||||
# endif
|
||||
};
|
||||
#endif // _LIBCPP_ENABLE_REMOVED_ALLOCATOR_CONST
|
||||
|
||||
template <class _Tp, class _Up>
|
||||
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX20
|
||||
bool operator==(const allocator<_Tp>&, const allocator<_Up>&) _NOEXCEPT {return true;}
|
||||
inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 bool
|
||||
operator==(const allocator<_Tp>&, const allocator<_Up>&) _NOEXCEPT {
|
||||
return true;
|
||||
}
|
||||
|
||||
#if _LIBCPP_STD_VER <= 17
|
||||
|
||||
template <class _Tp, class _Up>
|
||||
inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_SINCE_CXX20
|
||||
bool operator!=(const allocator<_Tp>&, const allocator<_Up>&) _NOEXCEPT {return false;}
|
||||
inline _LIBCPP_HIDE_FROM_ABI bool operator!=(const allocator<_Tp>&, const allocator<_Up>&) _NOEXCEPT {
|
||||
return false;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
_LIBCPP_END_NAMESPACE_STD
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue