- Debug mode can now be disabled.
This commit is contained in:
Paul Beckingham
2014-05-11 10:15:10 -04:00
parent 567f242e6d
commit a97ce45cdf
4 changed files with 14 additions and 10 deletions

View File

@@ -201,9 +201,9 @@ void Eval::ambiguity (bool value)
}
////////////////////////////////////////////////////////////////////////////////
void Eval::debug ()
void Eval::debug (bool value)
{
_debug = true;
_debug = value;
}
////////////////////////////////////////////////////////////////////////////////