Remove GCC5.5 from constexpr tests

This commit is contained in:
Simon Brand
2018-06-07 08:28:29 +01:00
parent 90b00674dd
commit b3b2715a95

View File

@@ -248,7 +248,7 @@ TEST_CASE("Monadic operations", "[monadic]") {
} }
SECTION("constexpr and_then") { 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<int> o10 = 42; constexpr tl::optional<int> o10 = 42;
constexpr auto o10r = o10.and_then(get_opt_int); constexpr auto o10r = o10.and_then(get_opt_int);