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);