From b3b2715a9596cd2c1c5fcb2e1b14379477bc0373 Mon Sep 17 00:00:00 2001 From: Simon Brand Date: Thu, 7 Jun 2018 08:28:29 +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 9eb024a..9c1483e 100644 --- a/tests/extensions.cpp +++ b/tests/extensions.cpp @@ -248,7 +248,7 @@ TEST_CASE("Monadic operations", "[monadic]") { } SECTION("constexpr and_then") { -#if !defined(_MSC_VER) && defined(TL_OPTIONAL_CXX14) +#if !defined(_MSC_VER) && defined(TL_OPTIONAL_CXX14) && !defined(TL_OPTIONAL_GCC55) constexpr tl::optional o10 = 42; constexpr auto o10r = o10.and_then(get_opt_int);