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 426da14870
commit b5707cd409
4 changed files with 10 additions and 10 deletions

View File

@@ -67,7 +67,7 @@
#include <boost/intrusive_ptr.hpp>
#include <iostream>
#include <boost/detail/iomanip.hpp>
#include <iomanip>
#include <cstddef> // size_t
#ifdef BOOST_INTEL
@@ -126,7 +126,7 @@ void DisplayBits( unsigned int number )
buffer[ bit ] = number & ( 1 << ( NO_OF_BITS - bit - 1 ) ) ? '1' : '0';
}
std::cout << "Current state: " << boost::detail::setw( 4 ) <<
std::cout << "Current state: " << std::setw( 4 ) <<
number << " (" << buffer << ")" << std::endl;
}