From 170a1941fba4f190539b769320920f136929df2a Mon Sep 17 00:00:00 2001 From: Simon Brand Date: Fri, 20 Oct 2017 11:28:34 +0100 Subject: [PATCH] MSVC --- tests/noexcept.cpp | 2 ++ 1 file changed, 2 insertions(+) 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; } };