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 ac5bfb7111
commit 407e7c7993

View File

@ -10,7 +10,7 @@
*/
#include <iostream>
#include <boost/detail/iomanip.hpp>
#include <iomanip>
#include <fstream>
#include <deque>
#include <sstream>
@ -232,12 +232,12 @@ void print_result(std::ostream& os, double time, double best)
if(highlight)
os << "<font color=\"#008000\">";
if(rel <= 1000)
os << boost::detail::setprecision(3) << rel;
os << std::setprecision(3) << rel;
else
os << (int)rel;
os << "<BR>(";
if(time <= 1000)
os << boost::detail::setprecision(3) << time;
os << std::setprecision(3) << time;
else
os << (int)time;
os << suffixes[suffix] << ")";