- Replaced old Tree-based parser with a faster, leaner parser.
  Currently lacking good error handling and a large test suite.
- Integrated new parser into Task object, for encode/decode.
- Replicated same basic unit tests.  Needs more.
- Fixed bug in handleShell that failed to call the new Context::initialize2.
- Removed debugging code from CmdInstall.
- Implemented format() that does not require width and precision args.
This commit is contained in:
Paul Beckingham 2011-05-20 00:18:36 -04:00
parent 05b3fa0bb6
commit 690fa6e206
8 changed files with 517 additions and 297 deletions

View file

@ -760,6 +760,14 @@ std::string format (double value, int width, int precision)
return s.str ();
}
////////////////////////////////////////////////////////////////////////////////
std::string format (double value)
{
std::stringstream s;
s << value;
return s.str ();
}
////////////////////////////////////////////////////////////////////////////////
std::string leftJustify (const int input, const int width)
{