Home | History | Annotate | Download | only in class.copy

Lines Matching refs:PrivateMove

172   struct PrivateMove {
173 PrivateMove &operator=(const PrivateMove &) = default;
175 PrivateMove &operator=(PrivateMove &&);
178 static_assert(__is_trivially_assignable(PrivateMove, const PrivateMove &), "");
179 static_assert(!__is_trivially_assignable(PrivateMove, PrivateMove &&), "");
182 PrivateMove pm;
184 // so moves of it use PrivateMove's copy ctor, which is trivial.
193 PrivateMove pm;
195 // so moves of it use PrivateMove's move ctor, which is not trivial.