From f904cd5d6994fe480183dddb9e9ef380afbc979d Mon Sep 17 00:00:00 2001 From: Steven Watanabe Date: Sat, 15 Jan 2011 08:11:51 +0000 Subject: [PATCH] Revert [67111] (addition of boost/detail/iomanip.hpp) and all the commits that depend on it. ([68137], [68140], [68141], [68154], and [68165]). [SVN r68168] --- test/io_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/io_test.cpp b/test/io_test.cpp index 69957d3..382f8cc 100644 --- a/test/io_test.cpp +++ b/test/io_test.cpp @@ -20,7 +20,7 @@ #include #include #include -#include +#include #if defined BOOST_NO_STRINGSTREAM #include @@ -81,7 +81,7 @@ int test_main(int argc, char * argv[] ) { // check width useThisOStringStream os4; - os4 << boost::detail::setw(10) << make_tuple(1, 2, 3); + os4 << std::setw(10) << make_tuple(1, 2, 3); BOOST_CHECK (os4.str() == std::string(" (1 2 3)") ); std::ofstream tmp("temp.tmp");