From 3bc2478a95fb9904123b94d7cc9376b381f03e91 Mon Sep 17 00:00:00 2001 From: "James E. King III" Date: Sat, 3 Nov 2018 16:25:07 -0400 Subject: [PATCH] Disable C++98 example in C++17 --- example/Jamfile.v2 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/example/Jamfile.v2 b/example/Jamfile.v2 index 23706c0..aa5b972 100644 --- a/example/Jamfile.v2 +++ b/example/Jamfile.v2 @@ -5,6 +5,7 @@ # Distributed under the Boost Software License, Version 1.0. (See accompany- # ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +import ../../config/checks/config : requires ; import os ; import testing ; @@ -13,7 +14,7 @@ project ; test-suite "function-examples" - : [ run bind1st.cpp ] + : [ run bind1st.cpp : : : [ requires cxx98_binders ] ] [ run int_div.cpp ] [ run sum_avg.cpp ] ;