any and all do not need to be reserved tokens

This commit is contained in:
John Wiegley 2010-06-04 03:40:39 -04:00
parent b7e8cb9d54
commit a4a45cb4d6

View file

@ -418,9 +418,7 @@ namespace {
{
switch (buf[0]) {
case 'a':
return (std::strcmp(buf, "and") == 0 ||
std::strcmp(buf, "any") == 0 ||
std::strcmp(buf, "all") == 0);
return std::strcmp(buf, "and") == 0;
case 'd':
return std::strcmp(buf, "div") == 0;
case 'e':