From 6e8235c08575ff24fd369c582340c7bfa952ff3f Mon Sep 17 00:00:00 2001 From: Simon Brand Date: Thu, 7 Jun 2018 08:54:43 +0100 Subject: [PATCH] Remove GCC5.5 from constexpr tests --- tests/extensions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/extensions.cpp b/tests/extensions.cpp index 9c1483e..e116a61 100644 --- a/tests/extensions.cpp +++ b/tests/extensions.cpp @@ -133,7 +133,7 @@ TEST_CASE("Monadic operations", "[monadic]") { } SECTION("map constexpr") { -#if !defined(_MSC_VER) && defined(TL_OPTIONAL_CXX14) +#if !defined(_MSC_VER) && defined(TL_OPTIONAL_CXX14) && !defined(TL_OPTIONAL_GCC55) // test each overload in turn constexpr tl::optional o16 = 42; constexpr auto o16r = o16.map(get_int);