From 02f606816deb4816c8f5b42f9b543b816c4a3c31 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Mon, 12 Jul 2004 02:21:35 +0000 Subject: [PATCH] faster compile (no iostream) [SVN r23451] --- test/transform_iterator_test.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/transform_iterator_test.cpp b/test/transform_iterator_test.cpp index 6c02a26..f7432cc 100644 --- a/test/transform_iterator_test.cpp +++ b/test/transform_iterator_test.cpp @@ -14,7 +14,6 @@ // to be in iterator_adaptor_test.cpp. #include -#include #include #include #include @@ -23,7 +22,6 @@ #include #include - #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; }