Revert [67111] (addition of boost/detail/iomanip.hpp) and all the commits that depend on it. ([68137], [68140], [68141], [68154], and [68165]).

[SVN r68168]
This commit is contained in:
Steven Watanabe
2011-01-15 08:11:51 +00:00
parent 2b30eb2225
commit f904cd5d69

View File

@ -20,7 +20,7 @@
#include <iterator> #include <iterator>
#include <algorithm> #include <algorithm>
#include <string> #include <string>
#include <boost/detail/iomanip.hpp> #include <iomanip>
#if defined BOOST_NO_STRINGSTREAM #if defined BOOST_NO_STRINGSTREAM
#include <strstream> #include <strstream>
@ -81,7 +81,7 @@ int test_main(int argc, char * argv[] ) {
// check width // check width
useThisOStringStream os4; 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)") ); BOOST_CHECK (os4.str() == std::string(" (1 2 3)") );
std::ofstream tmp("temp.tmp"); std::ofstream tmp("temp.tmp");