- Now prints the evaluated form, instead of the input form in debug mode, after
  successful source lookup.
This commit is contained in:
Paul Beckingham 2014-06-09 18:01:45 -04:00
parent d0d8d5eece
commit 05d4ac16a3

View file

@ -357,7 +357,7 @@ void Eval::evaluatePostfixStack (
values.push_back (v);
if (_debug)
std::cout << "# [" << values.size () << "] eval push '" << token->first << "' " << Lexer::type_name (token->second) << "\n";
std::cout << "# [" << values.size () << "] eval push '" << (std::string) v << "' " << Lexer::type_name (token->second) << "\n";
}
}