From 95197f427cf458f1c540fa50f862350727ec14a0 Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Sun, 4 Nov 2001 16:18:10 +0000 Subject: [PATCH] remoeved #if 0 [SVN r11565] --- iterator_adaptor_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iterator_adaptor_test.cpp b/iterator_adaptor_test.cpp index 8e8d0de..e510323 100644 --- a/iterator_adaptor_test.cpp +++ b/iterator_adaptor_test.cpp @@ -9,6 +9,8 @@ // See http://www.boost.org for most recent version including documentation. // Revision History +// 04 Nov 01 Updated with respect to change in named parameters. +// (Jeremy Siek) // 08 Mar 01 Moved indirect and transform tests to separate files. // (Jeremy Siek) // 19 Feb 01 Take adavantage of improved iterator_traits to do more tests @@ -110,7 +112,6 @@ main() // sanity check, if this doesn't pass the test is buggy boost::random_access_iterator_test(array, N, array); -#if 0 // Check that the policy concept checks and the default policy // implementation match up. boost::function_requires< @@ -370,7 +371,6 @@ main() if (zero) // don't do this, just make sure it compiles assert((*i).m_x == i->foo()); } -#endif std::cout << "test successful " << std::endl; return 0; }