any and all do not need to be reserved tokens
This commit is contained in:
parent
b7e8cb9d54
commit
a4a45cb4d6
1 changed files with 1 additions and 3 deletions
|
|
@ -418,9 +418,7 @@ namespace {
|
||||||
{
|
{
|
||||||
switch (buf[0]) {
|
switch (buf[0]) {
|
||||||
case 'a':
|
case 'a':
|
||||||
return (std::strcmp(buf, "and") == 0 ||
|
return std::strcmp(buf, "and") == 0;
|
||||||
std::strcmp(buf, "any") == 0 ||
|
|
||||||
std::strcmp(buf, "all") == 0);
|
|
||||||
case 'd':
|
case 'd':
|
||||||
return std::strcmp(buf, "div") == 0;
|
return std::strcmp(buf, "div") == 0;
|
||||||
case 'e':
|
case 'e':
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue