forked from boostorg/tuple
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:
@ -20,7 +20,7 @@
|
||||
#include <iterator>
|
||||
#include <algorithm>
|
||||
#include <string>
|
||||
#include <boost/detail/iomanip.hpp>
|
||||
#include <iomanip>
|
||||
|
||||
#if defined BOOST_NO_STRINGSTREAM
|
||||
#include <strstream>
|
||||
@ -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");
|
||||
|
Reference in New Issue
Block a user