Enhancement - timers

- Timers now only use fixed precision for even very small numbers.
This commit is contained in:
Paul Beckingham 2009-06-23 09:56:31 -04:00
parent b31cc639a4
commit acb6e3cfdc

View file

@ -52,6 +52,7 @@ Timer::~Timer ()
<< mDescription
<< " "
<< std::setprecision (6)
<< std::fixed
<< ((end.tv_sec - mStart.tv_sec) + ((end.tv_usec - mStart.tv_usec )
/ 1000000.0));