diff --git a/tests/noexcept.cpp b/tests/noexcept.cpp index 74dd4ad..f3d2fad 100644 --- a/tests/noexcept.cpp +++ b/tests/noexcept.cpp @@ -30,6 +30,8 @@ TEST_CASE("Noexcept", "[noexcept]") { }; struct throw_swappable { + throw_swappable() = default; + throw_swappable(const throw_swappable &) {} throw_swappable(throw_swappable &&) {} throw_swappable &swap(const throw_swappable &) { return *this; } };