From ffc110612403e6df9cd971035ced485c4671c8be Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Sat, 1 Jul 2017 08:26:24 +0100 Subject: [PATCH] Disable barycentric example for older compilers due to change in Boost.Range. --- example/Jamfile.v2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/Jamfile.v2 b/example/Jamfile.v2 index 2bd3b03de..232bdbce5 100644 --- a/example/Jamfile.v2 +++ b/example/Jamfile.v2 @@ -127,7 +127,7 @@ test-suite examples : [ explicit root_n_finding_algorithms ] [ run barycentric_interpolation_example.cpp : : : [ requires cxx11_smart_ptr ] ] - [ run barycentric_interpolation_example_2.cpp : : : [ requires cxx11_smart_ptr ] ] + [ run barycentric_interpolation_example_2.cpp : : : [ requires cxx11_smart_ptr cxx11_function_template_default_args ] ] [ run cubic_b_spline_example.cpp : : : [ requires cxx11_smart_ptr cxx11_hdr_random cxx11_defaulted_functions ] ] ;