From fa03f39333d64de7a54d922f7d8704bb36e1afe6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorsten=20J=C3=B8rgen=20Ottosen?= Date: Tue, 13 Dec 2005 22:50:57 +0000 Subject: [PATCH] *** empty log message *** [SVN r32016] --- test/iterator_range.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/iterator_range.cpp b/test/iterator_range.cpp index 2b28b09..20696aa 100755 --- a/test/iterator_range.cpp +++ b/test/iterator_range.cpp @@ -119,7 +119,7 @@ test_suite* init_unit_test_suite( int argc, char* argv[] ) // template< class Container > -void test_iter_range( Container& a_cont ) +int test_iter_range( Container& a_cont ) { typedef BOOST_DEDUCED_TYPENAME range_result_iterator::type citer_type; typedef iterator_range riter_type; @@ -127,6 +127,7 @@ void test_iter_range( Container& a_cont ) a_riter.front(); a_riter.back(); int i = a_riter[0]; + return i; }