2
0
mirror of https://github.com/boostorg/test.git synced 2026-02-19 14:52:09 +00:00

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 d9dbf412f9
commit 704e7cb516
8 changed files with 15 additions and 18 deletions

View File

@@ -29,7 +29,7 @@
// STL
#include <iostream>
#include <boost/detail/iomanip.hpp>
#include <iomanip>
#ifdef BOOST_MSVC
# pragma warning(push)
@@ -525,7 +525,7 @@ TEST_CASE( test_BOOST_TEST_MESSAGE )
BOOST_TEST_MESSAGE( "0x14" );
#endif
BOOST_TEST_MESSAGE( boost::detail::setw( 4 ) << 20 );
BOOST_TEST_MESSAGE( std::setw( 4 ) << 20 );
}
//____________________________________________________________________________//