Searched refs:trait_trivial_move (Results 1 – 1 of 1) sorted by relevance
38 template <typename T> struct trait_trivial_move { enum { value = false }; }; argument54 has_trivial_move = is_pointer || trait_trivial_move<TYPE>::value83 template<> struct trait_trivial_move< T > { enum { value = true }; };289 struct trait_trivial_move< key_value_pair_t<K, V> >