Remove GCC5.5 from constexpr tests

This commit is contained in:
Simon Brand
2018-06-07 08:54:43 +01:00
parent b3b2715a95
commit 6e8235c085

View File

@ -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<int> o16 = 42;
constexpr auto o16r = o16.map(get_int);