diff --git a/test/tuple_test_bench.cpp b/test/tuple_test_bench.cpp index 87c3f28..7250798 100644 --- a/test/tuple_test_bench.cpp +++ b/test/tuple_test_bench.cpp @@ -264,11 +264,13 @@ void foo7() { // Testing cons lists void foo8() { +#if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) cons a(1, null_type()); cons > b(2,a); int i = 3; cons > > c(i, b); BOOST_TEST(make_tuple(3,2,1)==c); +#endif }