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