From 44be76e9b6fccd2c330b23b086e343a6dda815c2 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sun, 24 May 2020 06:50:02 +0300 Subject: [PATCH] Disable test/tuple_transform_cx on g++ 4.7 --- test/tuple_transform_cx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tuple_transform_cx.cpp b/test/tuple_transform_cx.cpp index 7cfff33..a51ca52 100644 --- a/test/tuple_transform_cx.cpp +++ b/test/tuple_transform_cx.cpp @@ -9,7 +9,7 @@ // Technically std::tuple isn't constexpr enabled in C++11, but it works with libstdc++ -#if defined( BOOST_MP11_NO_CONSTEXPR ) || ( !defined( __GLIBCXX__ ) && __cplusplus < 201400L ) +#if defined( BOOST_MP11_NO_CONSTEXPR ) || ( !defined( __GLIBCXX__ ) && __cplusplus < 201400L ) || BOOST_MP11_WORKAROUND( BOOST_MP11_GCC, < 40800 ) int main() {}