Searched refs:trait_trivial_ctor (Results 1 – 1 of 1) sorted by relevance
33 template <typename T> struct trait_trivial_ctor { enum { value = false }; }; argument46 has_trivial_ctor = is_pointer || trait_trivial_ctor<TYPE>::value,72 template<> struct trait_trivial_ctor< T > { enum { value = true }; };256 struct trait_trivial_ctor< key_value_pair_t<K, V> >