Searched refs:PrivateMove (Results 1 – 3 of 3) sorted by relevance
172 struct PrivateMove { struct173 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;193 PrivateMove pm;
149 struct PrivateMove { struct150 PrivateMove(const PrivateMove &) = default;152 PrivateMove(PrivateMove &&);155 static_assert(__is_trivially_constructible(PrivateMove, const PrivateMove &), "");156 static_assert(!__is_trivially_constructible(PrivateMove, PrivateMove &&), "");159 PrivateMove pm;170 PrivateMove pm;
68 struct PrivateMove { struct69 PrivateMove() noexcept;70 PrivateMove(const PrivateMove &) noexcept(false);71 PrivateMove & operator =(const PrivateMove &) noexcept(false);73 PrivateMove(PrivateMove &&) noexcept;74 PrivateMove & operator =(PrivateMove &&) noexcept;77 struct InheritsPrivateMove : PrivateMove {};79 PrivateMove pm;