CmdCalc: Coneverted to CLI2::getWords

This commit is contained in:
Paul Beckingham 2015-06-14 23:24:11 -04:00
parent 8894dc1244
commit e36d358115

View file

@ -63,7 +63,7 @@ int CmdCalc::execute (std::string& output)
// Compile all the args into one expression.
std::string expression;
std::vector <std::string> words = context.cli.getWords ();
std::vector <std::string> words = context.cli2.getWords ();
for (auto& word : words)
expression += word + " ";