From a5adbbfd5f2fd4b7a51869828959d9b041cb71f6 Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Tue, 20 Feb 2001 16:01:00 +0000 Subject: [PATCH] use filter_iter::policies_type instead of filter_gen::policies_type [SVN r9292] --- iterator_adaptor_test.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/iterator_adaptor_test.cpp b/iterator_adaptor_test.cpp index 96904e6..fa40da1 100644 --- a/iterator_adaptor_test.cpp +++ b/iterator_adaptor_test.cpp @@ -384,13 +384,13 @@ main() #ifdef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION , dummyT #endif - > filter_gen; + >::type filter_iter; - filter_gen::type i(array, filter_gen::policies_type(one_or_four(), array + N)); + filter_iter i(array, filter_iter::policies_type(one_or_four(), array + N)); boost::forward_iterator_test(i, dummyT(1), dummyT(4)); enum { is_forward = boost::is_same< - filter_gen::type::iterator_category, + filter_iter::iterator_category, std::forward_iterator_tag>::value }; BOOST_STATIC_ASSERT(is_forward);