From 0d2aeead388eec0c4f45c94e8a7e4fb489cc2398 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Fri, 29 Jun 2018 02:29:23 +0300 Subject: [PATCH] Update workarounds to cover g++ 8.1 --- test/constexpr_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/constexpr_test.cpp b/test/constexpr_test.cpp index 386ce66..cbc9d53 100644 --- a/test/constexpr_test.cpp +++ b/test/constexpr_test.cpp @@ -32,7 +32,7 @@ BOOST_STATIC_ASSERT( e2.category() == generic_category() ); BOOST_STATIC_ASSERT( e2 ); BOOST_STATIC_ASSERT( e2 == e2 ); -#if !BOOST_WORKAROUND(BOOST_GCC, < 80000) +#if !BOOST_WORKAROUND(BOOST_GCC, < 80200) BOOST_STATIC_ASSERT( e1 != e2 ); @@ -45,7 +45,7 @@ BOOST_STATIC_ASSERT( e3.category() == system_category() ); BOOST_STATIC_ASSERT( !e3 ); BOOST_STATIC_ASSERT( e3 == e3 ); -#if !BOOST_WORKAROUND(BOOST_GCC, < 80000) +#if !BOOST_WORKAROUND(BOOST_GCC, < 80200) BOOST_STATIC_ASSERT( e1 != e3 );