forked from boostorg/regex
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:
@ -10,7 +10,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <boost/detail/iomanip.hpp>
|
#include <iomanip>
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
#include <deque>
|
#include <deque>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
@ -232,12 +232,12 @@ void print_result(std::ostream& os, double time, double best)
|
|||||||
if(highlight)
|
if(highlight)
|
||||||
os << "<font color=\"#008000\">";
|
os << "<font color=\"#008000\">";
|
||||||
if(rel <= 1000)
|
if(rel <= 1000)
|
||||||
os << boost::detail::setprecision(3) << rel;
|
os << std::setprecision(3) << rel;
|
||||||
else
|
else
|
||||||
os << (int)rel;
|
os << (int)rel;
|
||||||
os << "<BR>(";
|
os << "<BR>(";
|
||||||
if(time <= 1000)
|
if(time <= 1000)
|
||||||
os << boost::detail::setprecision(3) << time;
|
os << std::setprecision(3) << time;
|
||||||
else
|
else
|
||||||
os << (int)time;
|
os << (int)time;
|
||||||
os << suffixes[suffix] << ")";
|
os << suffixes[suffix] << ")";
|
||||||
|
Reference in New Issue
Block a user