faster compile (no iostream)

[SVN r23451]
This commit is contained in:
Dave Abrahams
2004-07-12 02:21:35 +00:00
parent 1ffc31cc37
commit 02f606816d

View File

@ -14,7 +14,6 @@
// to be in iterator_adaptor_test.cpp.
#include <boost/config.hpp>
#include <iostream>
#include <algorithm>
#include <boost/iterator/transform_iterator.hpp>
#include <boost/iterator/iterator_concepts.hpp>
@ -23,7 +22,6 @@
#include <boost/bind.hpp>
#include <boost/concept_check.hpp>
#ifdef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
namespace boost { namespace detail
{
@ -105,6 +103,7 @@ int mult_2(int arg)
return arg*2;
}
int
main()
{
@ -246,6 +245,5 @@ main()
);
}
std::cout << "test successful " << std::endl;
return 0;
}