Searched refs:has_operator_delete (Results 1 - 1 of 1) sorted by relevance

/gem5/ext/pybind11/include/pybind11/
H A Dpybind11.h992 template <typename T, typename SFINAE = void> struct has_operator_delete : std::false_type { }; struct in inherits:std::false_type
993 template <typename T> struct has_operator_delete<T, void_t<decltype(static_cast<void (*)(void *)>(T::operator delete))>> struct in inherits:std::true_type
999 template <typename T, enable_if_t<has_operator_delete<T>::value, int> = 0>
1001 template <typename T, enable_if_t<!has_operator_delete<T>::value && has_operator_delete_size<T>::value, int> = 0>

Completed in 13 milliseconds