Home
last modified time | relevance | path

Searched refs:can_skip_destructor (Results 1 – 1 of 1) sorted by relevance

/external/skia/src/core/
DSkLiteDL.cpp693 template <typename T> using can_skip_destructor = std::has_trivial_destructor<T>; typedef
695 template <typename T> using can_skip_destructor = std::is_trivially_destructible<T>; typedef
699 #define M(T) !can_skip_destructor<T>::value ? [](const void* op) { ((const T*)op)->~T(); } \