fix check when the second argument contains operator-characters

This commit is contained in:
Marc Wäckerlin
2019-11-27 19:36:09 +01:00
parent 1faebb78a0
commit 08252354cd

View File

@@ -2622,7 +2622,6 @@ class Check: public Command {
throw BadArgument(tag()+" has at most three arguments", allargs);
cmd->_value1 = allargs[0];
cmd->_cmp = allargs[1][0].toLatin1();
std::cout<<"ARGS: \""<<allargs.join("\", \"")<<"\"\n";
if (allargs.size()==3) {
cmd->_value2 = allargs[2];
} else {