From 71e9d5aa2db588ca6524ce65e4709ba4849a311c Mon Sep 17 00:00:00 2001 From: rich_sposato Date: Wed, 26 Oct 2005 00:33:06 +0000 Subject: [PATCH] Added seconds back to output. git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@323 7ec92016-0320-0410-acc4-a06ded1c099a --- test/SmallObj/timer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/SmallObj/timer.h b/test/SmallObj/timer.h index 6e0b1a1..fab3c9e 100755 --- a/test/SmallObj/timer.h +++ b/test/SmallObj/timer.h @@ -47,7 +47,7 @@ public: void print(int t, const char* s) { - std::cout << s <<"\trelative time: " << rel(t) << "%\tspeed-up factor: " << speedup(t) << "" << std::endl; + std::cout << s << "\tseconds: " << sec(t) << "\trelative time: " << rel(t) << "%\tspeed-up factor: " << speedup(t) << "" << std::endl; } private: int t0;