Add missing braces to if condition

The indentation implies this was the intention. Noticed the issue while trying to compile our code with -Werror -Wall
This commit is contained in:
Geoffrey Martin-Noble 2020-03-25 20:52:43 -07:00 committed by GitHub
parent 8e26c5f50e
commit 9b3baf9881
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) {