From 953cc4622084b190359610531393f837136494f2 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Thu, 28 Aug 2003 20:18:51 +0000 Subject: [PATCH] Removed code-breaking change from boost/detail/iterator.hpp and corresponding workarounds from tests. Added permutation_iterator_test to the suite after fixing it up -- it was riddled with bugs! [SVN r19841] --- indirect_iterator_example.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/indirect_iterator_example.cpp b/indirect_iterator_example.cpp index c5e97ec..658310e 100644 --- a/indirect_iterator_example.cpp +++ b/indirect_iterator_example.cpp @@ -50,12 +50,10 @@ int main(int, char*[]) // Example of using make_indirect_iterator() -#if !defined(BOOST_MSVC) || BOOST_MSVC > 1300 std::copy(boost::make_indirect_iterator(pointers_to_chars), boost::make_indirect_iterator(pointers_to_chars + N), std::ostream_iterator(std::cout, ",")); std::cout << std::endl; -#endif return 0; }