diff --git a/tests/noexcept.cpp b/tests/noexcept.cpp index 3521a7d..949650b 100644 --- a/tests/noexcept.cpp +++ b/tests/noexcept.cpp @@ -48,7 +48,7 @@ TEST_CASE("Noexcept", "[noexcept]") { SECTION("constructors") { //TODO see why this fails -#if !defined(_MSC_VER) || _MSC_VER >= 1900 +#if !defined(_MSC_VER) || _MSC_VER > 1900 REQUIRE(noexcept(tl::optional{})); REQUIRE(noexcept(tl::optional{tl::nullopt}));