diff --git a/tests/noexcept.cpp b/tests/noexcept.cpp index 967f39e..b12fdea 100644 --- a/tests/noexcept.cpp +++ b/tests/noexcept.cpp @@ -22,7 +22,7 @@ TEST_CASE("Noexcept", "[noexcept]") { SECTION("swap") { //TODO see why this fails -#if !defined(_MSC_VER) || _MSC_VER >= 1900 +#if !defined(_MSC_VER) || _MSC_VER > 1900 REQUIRE(noexcept(swap(o1, o2)) == noexcept(o1.swap(o2))); struct nothrow_swappable {