From d92a7b0498d7a5157e960fbeeb0da63842cf24a3 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sun, 23 Feb 2025 19:19:23 +0200 Subject: [PATCH] Disable span_constexpr_test under GCC 4.x --- test/span_constexpr_test.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/span_constexpr_test.cpp b/test/span_constexpr_test.cpp index c24751b..043fec9 100644 --- a/test/span_constexpr_test.cpp +++ b/test/span_constexpr_test.cpp @@ -6,7 +6,8 @@ Distributed under the Boost Software License, Version 1.0. (http://www.boost.org/LICENSE_1_0.txt) */ #include -#if !defined(BOOST_NO_CXX11_CONSTEXPR) +#include +#if !defined(BOOST_NO_CXX11_CONSTEXPR) && !BOOST_WORKAROUND(BOOST_GCC, < 50000) #include #include