Eval: Removed ::ambiguity

This commit is contained in:
Paul Beckingham
2015-07-01 17:54:36 -04:00
parent 987fab388d
commit 6276241ef0
2 changed files with 1 additions and 11 deletions

View File

@@ -104,8 +104,7 @@ static bool namedConstants (const std::string& name, Variant& value)
////////////////////////////////////////////////////////////////////////////////
Eval::Eval ()
: _ambiguity (true)
, _debug (false)
: _debug (false)
{
addSource (namedConstants);
}
@@ -219,12 +218,6 @@ void Eval::evaluateCompiledExpression (Variant& v)
evaluatePostfixStack (_compiled, v);
}
////////////////////////////////////////////////////////////////////////////////
void Eval::ambiguity (bool value)
{
_ambiguity = value;
}
////////////////////////////////////////////////////////////////////////////////
void Eval::debug (bool value)
{
@@ -418,7 +411,6 @@ void Eval::evaluatePostfixStack (
/*
case Lexer::Type::uuid:
case Lexer::Type::hex:
case Lexer::Type::list:
case Lexer::Type::url:
case Lexer::Type::pair:
case Lexer::Type::separator: