Searched defs:ThrowsMove (Results 1 – 3 of 3) sorted by relevance
178 struct ThrowsMove { in main() struct179 ThrowsMove() noexcept {} in main() argument180 ThrowsMove(ThrowsMove const&) noexcept {} in main() function181 ThrowsMove(ThrowsMove &&) noexcept(false) {} in main() argument182 ThrowsMove& operator=(ThrowsMove const&) noexcept { return *this; } in main()183 ThrowsMove& operator=(ThrowsMove &&) noexcept { return *this; } in main()
199 struct ThrowsMove { in main() struct200 ThrowsMove() noexcept(false) {} in main() function201 ThrowsMove(ThrowsMove const&) noexcept(false) {} in main() argument202 ThrowsMove(ThrowsMove &&) noexcept(false) {} in main() argument
25 struct ThrowsMove { struct26 ThrowsMove(ThrowsMove&&) noexcept(false) {} in ThrowsMove() function