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]
This commit is contained in:
Dave Abrahams
2003-08-28 20:18:51 +00:00
parent b5ae0ad86b
commit 953cc46220

View File

@@ -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<char>(std::cout, ","));
std::cout << std::endl;
#endif
return 0;
}