Searched defs:MoveMeNoThrow (Results 1 – 1 of 1) sorted by relevance
1540 struct MoveMeNoThrow { struct1541 MoveMeNoThrow() : x(0) {} in MoveMeNoThrow() function1542 [[noreturn]] MoveMeNoThrow(const MoveMeNoThrow& other) : x(other.x) { in MoveMeNoThrow() argument1546 MoveMeNoThrow(MoveMeNoThrow&& other) noexcept : x(other.x) {} in MoveMeNoThrow() function1547 int x;