Searched refs:trait_trivial_dtor (Results 1 – 1 of 1) sorted by relevance
36 template <typename T> struct trait_trivial_dtor { enum { value = false }; }; argument50 has_trivial_dtor = is_pointer || trait_trivial_dtor<TYPE>::value,77 template<> struct trait_trivial_dtor< T > { enum { value = true }; };283 struct trait_trivial_dtor< key_value_pair_t<K, V> >