From 6669e070715861062fb80964c3c95b6d609f902c Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sun, 22 Dec 2024 20:12:08 +0200 Subject: [PATCH] Work around GCC 5, 6 failures --- test/Jamfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Jamfile b/test/Jamfile index 537543c..0172afc 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -60,10 +60,10 @@ run variant_in_place_type_construct.cpp ; compile variant_in_place_type_construct_cx.cpp : msvc-14.0:no ; run variant_copy_assign.cpp ; -compile variant_copy_assign_cx.cpp : [ requires cxx14_constexpr ] ; +compile variant_copy_assign_cx.cpp : [ requires cxx14_constexpr ] gcc-5:no gcc-6:no ; run variant_move_assign.cpp ; -compile variant_move_assign_cx.cpp : [ requires cxx14_constexpr ] ; +compile variant_move_assign_cx.cpp : [ requires cxx14_constexpr ] gcc-5:no gcc-6:no ; run variant_value_assign.cpp ; compile variant_value_assign_cx.cpp : [ requires cxx14_constexpr ] ;