- Forced the format(double) helper function to not use scientific notation,
  which was causing problems.
This commit is contained in:
Paul Beckingham 2011-09-11 01:02:43 -04:00
parent e31e80961a
commit 038687b801

View file

@ -859,7 +859,7 @@ const std::string format (double value, int width, int precision)
const std::string format (double value)
{
std::stringstream s;
s << value;
s << std::fixed << value;
return s.str ();
}