From 040b018ce0fbe146b5c3909223b416da34846a0b Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Wed, 24 Jul 2024 23:55:54 -0500 Subject: [PATCH] Restore warnings-as-errors-off that got accidentally removed in a merge. --- test/Jamfile.v2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 09fa7b6..ba1f8f7 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -424,7 +424,7 @@ run size_test.cpp ; local CPP11 = [ requires cxx11_variadic_templates cxx11_template_aliases cxx11_decltype cxx11_constexpr cxx11_noexcept ] ; -local with-serialization = /boost/serialization//boost_serialization/off norecover:static $(CPP11) ; +local with-serialization = /boost/serialization//boost_serialization/off $(warnings-as-errors-off) norecover:static $(CPP11) ; run serialization_nvp_test.cpp : : : $(with-serialization) norecover:no ; run serialization_split_free_test.cpp : : : $(with-serialization) ;