From 1c0174597369b90368fecb4c9ecd2050d450b3d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaakko=20J=C3=A4rvi?= Date: Tue, 4 Sep 2001 10:50:13 +0000 Subject: [PATCH] adding a test for cons list default construction [SVN r11016] --- test/tuple_test_bench.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/tuple_test_bench.cpp b/test/tuple_test_bench.cpp index 529d54c..af6d337 100644 --- a/test/tuple_test_bench.cpp +++ b/test/tuple_test_bench.cpp @@ -270,6 +270,9 @@ void foo8() int i = 3; cons > > c(i, b); BOOST_TEST(make_tuple(3,2,1)==c); + + cons > > x; + #endif } @@ -281,7 +284,6 @@ void foo9() BOOST_TEST(get<1>(t1) == 3.3f); } - // -------------------------------- // ---------------------------- int test_main(int, char *[]) {