removing bogus assert (per rogerl)

This commit is contained in:
rginda%netscape.com 2000-07-15 00:01:25 +00:00
Родитель b28d5acd85
Коммит 950d90e264
2 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -667,7 +667,8 @@ static bool generatedBoolean(ExprNode *p)
case ExprNode::logicalOr:
return true;
default:
NOT_REACHED("I shouldn't be here."); /* quiet linux warnings */
break;
}
return false;
}

Просмотреть файл

@ -667,7 +667,8 @@ static bool generatedBoolean(ExprNode *p)
case ExprNode::logicalOr:
return true;
default:
NOT_REACHED("I shouldn't be here."); /* quiet linux warnings */
break;
}
return false;
}