Remove a redundant condition in an if statement

This was added erroneously in commit 12bc9aa9c.
This commit is contained in:
Arcady Goldmints-Orlov 2023-03-31 17:07:37 -06:00 committed by arcady-lunarg
parent 2aca6d419c
commit fbabd37aca

View File

@ -7565,7 +7565,6 @@ const TFunction* HlslParseContext::findFunction(const TSourceLoc& loc, TFunction
candidateList[0]->getBuiltInOp() == EOpMethodRestartStrip ||
candidateList[0]->getBuiltInOp() == EOpMethodIncrementCounter ||
candidateList[0]->getBuiltInOp() == EOpMethodDecrementCounter ||
candidateList[0]->getBuiltInOp() == EOpMethodAppend ||
candidateList[0]->getBuiltInOp() == EOpMethodConsume)) {
return candidateList[0];
}