From 407e7c799389765f5bc0f3d34f296958a10ce921 Mon Sep 17 00:00:00 2001 From: Steven Watanabe Date: Sat, 15 Jan 2011 08:11:51 +0000 Subject: [PATCH] Revert [67111] (addition of boost/detail/iomanip.hpp) and all the commits that depend on it. ([68137], [68140], [68141], [68154], and [68165]). [SVN r68168] --- performance/command_line.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/performance/command_line.cpp b/performance/command_line.cpp index 32738807..bdebc7a1 100644 --- a/performance/command_line.cpp +++ b/performance/command_line.cpp @@ -10,7 +10,7 @@ */ #include -#include +#include #include #include #include @@ -232,12 +232,12 @@ void print_result(std::ostream& os, double time, double best) if(highlight) os << ""; if(rel <= 1000) - os << boost::detail::setprecision(3) << rel; + os << std::setprecision(3) << rel; else os << (int)rel; os << "
("; if(time <= 1000) - os << boost::detail::setprecision(3) << time; + os << std::setprecision(3) << time; else os << (int)time; os << suffixes[suffix] << ")";