forked from TartanLlama/optional
Remove GCC5.5 from constexpr tests
This commit is contained in:
@ -133,7 +133,7 @@ TEST_CASE("Monadic operations", "[monadic]") {
|
|||||||
}
|
}
|
||||||
|
|
||||||
SECTION("map constexpr") {
|
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
|
// test each overload in turn
|
||||||
constexpr tl::optional<int> o16 = 42;
|
constexpr tl::optional<int> o16 = 42;
|
||||||
constexpr auto o16r = o16.map(get_int);
|
constexpr auto o16r = o16.map(get_int);
|
||||||
|
Reference in New Issue
Block a user