Searched defs:ThrowsMove (Results 1 – 3 of 3) sorted by relevance
183 struct ThrowsMove { in main() struct184 ThrowsMove() noexcept {} in main() function185 ThrowsMove(ThrowsMove const&) noexcept {} in main() argument186 ThrowsMove(ThrowsMove &&) noexcept(false) {} in main() function187 ThrowsMove& operator=(ThrowsMove const&) noexcept { return *this; } in main()188 ThrowsMove& operator=(ThrowsMove &&) noexcept { return *this; } in main()
208 struct ThrowsMove { in main() struct209 ThrowsMove() noexcept(false) {} in main() argument210 ThrowsMove(ThrowsMove const&) noexcept(false) {} in main() function211 ThrowsMove(ThrowsMove &&) noexcept(false) {} in main() function
35 struct ThrowsMove { struct36 ThrowsMove(ThrowsMove &&) noexcept(false) {} in ThrowsMove() argument