From c8a6658f9f2369f2b4e0b53750ba209f0e0008c8 Mon Sep 17 00:00:00 2001 From: Simon Brand Date: Thu, 7 Jun 2018 09:23:52 +0100 Subject: [PATCH] Remove GCC5.5 from test --- tests/extensions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/extensions.cpp b/tests/extensions.cpp index 9eb024a..55ca613 100644 --- a/tests/extensions.cpp +++ b/tests/extensions.cpp @@ -332,7 +332,7 @@ TEST_CASE("Monadic operations", "[monadic]") { }; #if defined(TL_OPTIONAL_CXX14) && !defined(TL_OPTIONAL_GCC49) && \ - !defined(TL_OPTIONAL_GCC54) + !defined(TL_OPTIONAL_GCC54) && !defined(TL_OPTIONAL_GCC55) SECTION("Issue #1") { tl::optional f = foo{}; auto l = [](auto &&x) { x.non_const(); };