Expressions

- Removed unnecessary enquoted blank strings.
This commit is contained in:
Paul Beckingham 2011-07-19 00:51:42 -04:00
parent 09d94a0712
commit 19cb6110bd

View file

@ -859,15 +859,15 @@ void Expression::expand_attmod ()
}
else if (mod == "none")
{
temp.push_back (Triple (name, "lvalue", arg->_third));
temp.push_back (Triple ("==", "op", arg->_third));
temp.push_back (Triple ("\"\"", "string", arg->_third));
temp.push_back (Triple (name, "lvalue", arg->_third));
temp.push_back (Triple ("==", "op", arg->_third));
temp.push_back (Triple ("", "string", arg->_third));
}
else if (mod == "any")
{
temp.push_back (Triple (name, "lvalue", arg->_third));
temp.push_back (Triple ("!=", "op", arg->_third));
temp.push_back (Triple ("\"\"", "string", arg->_third));
temp.push_back (Triple (name, "lvalue", arg->_third));
temp.push_back (Triple ("!=", "op", arg->_third));
temp.push_back (Triple ("", "string", arg->_third));
}
else if (mod == "is" || mod == "equals")
{