From c325c63b170da3af229a513cc35c270bdc0a5dbf Mon Sep 17 00:00:00 2001 From: Isabella Muerte <63051+slurps-mad-rips@users.noreply.github.com> Date: Tue, 17 Sep 2019 10:18:56 -0700 Subject: [PATCH] fixup! fixup! :art: Cleanup include path for catch2 --- tests/noexcept.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}));