Searched defs:MoveConstructible (Results 1 – 5 of 5) sorted by relevance
20 struct MoveConstructible { struct22 constexpr explicit MoveConstructible(int i) : x(i) { } in MoveConstructible() argument23 …constexpr MoveConstructible(MoveConstructible&& other) noexcept(NoexceptMove) : x(other.x) { other… in MoveConstructible() argument
58 struct MoveConstructible { struct59 explicit MoveConstructible() {} in MoveConstructible() argument60 MoveConstructible(MoveConstructible&&) {} in MoveConstructible() argument
61 struct MoveConstructible { struct62 explicit MoveConstructible() {} in MoveConstructible() argument63 MoveConstructible(MoveConstructible&&) {} in MoveConstructible() function
43 struct MoveConstructible { struct47 MoveConstructible(const MoveConstructible&) = delete; argument
586 using MoveConstructible = std::unique_ptr<Foo>; in TEST_F() typedef