Obey __cpp_sized_deallocation and __cpp_aligned_new

Don't assume that just because the language version is C++17 that the
standard library offers all C++17 features, too.  When using clang-6.0
and --std=c++17 on Ubuntu 18.04 with libstdc++, __cpp_sized_deallocation
is false.
This commit is contained in:
Jeremy Nimmer 2019-06-14 12:12:51 -04:00 committed by Wenzel Jakob
parent 6c29cbf88d
commit 759221f5c5
2 changed files with 16 additions and 9 deletions

View File

@ -574,10 +574,10 @@ public:
if (type->operator_new) {
vptr = type->operator_new(type->type_size);
} else {
#if defined(PYBIND11_CPP17)
#ifdef __cpp_aligned_new
if (type->type_align > __STDCPP_DEFAULT_NEW_ALIGNMENT__)
vptr = ::operator new(type->type_size,
(std::align_val_t) type->type_align);
std::align_val_t(type->type_align));
else
#endif
vptr = ::operator new(type->type_size);

View File

@ -1003,10 +1003,17 @@ void call_operator_delete(T *p, size_t s, size_t) { T::operator delete(p, s); }
inline void call_operator_delete(void *p, size_t s, size_t a) {
(void)s; (void)a;
#if defined(PYBIND11_CPP17)
if (a > __STDCPP_DEFAULT_NEW_ALIGNMENT__)
#ifdef __cpp_aligned_new
if (a > __STDCPP_DEFAULT_NEW_ALIGNMENT__) {
#ifdef __cpp_sized_deallocation
::operator delete(p, s, std::align_val_t(a));
else
#else
::operator delete(p, std::align_val_t(a));
#endif
return;
}
#endif
#ifdef __cpp_sized_deallocation
::operator delete(p, s);
#else
::operator delete(p);