Merge pull request #2154 from GMNGeoffrey/patch-1

Add missing braces to if condition
This commit is contained in:
John Kessenich 2020-03-26 00:18:25 -06:00 committed by GitHub
commit 2df8c71258
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8983,9 +8983,10 @@ void TBuiltIns::identifyBuiltIns(int version, EProfile profile, const SpvVersion
} }
break; break;
case EShLangIntersect: case EShLangIntersect:
if (profile != EEsProfile && version >= 460) if (profile != EEsProfile && version >= 460) {
symbolTable.relateToOperator("reportIntersectionNV", EOpReportIntersection); symbolTable.relateToOperator("reportIntersectionNV", EOpReportIntersection);
symbolTable.relateToOperator("reportIntersectionEXT", EOpReportIntersection); symbolTable.relateToOperator("reportIntersectionEXT", EOpReportIntersection);
}
break; break;
case EShLangAnyHit: case EShLangAnyHit:
if (profile != EEsProfile && version >= 460) { if (profile != EEsProfile && version >= 460) {