Searched refs:CopyAssignable (Results 1 – 4 of 4) sorted by relevance
333 struct Object : test_concepts::Copyable, test_concepts::CopyAssignable {};
474 struct Object : test_concepts::Copyable, test_concepts::CopyAssignable {};
44 template<bool DefaultConstructible, bool CopyConstructible, bool CopyAssignable>56 template<bool T = CopyAssignable, typename = typename std::enable_if<T>::type>
46 struct CopyAssignable { CopyAssignable& operator=( const CopyAssignable& ) = default; }; struct