Cycles: Cleanup, whitespace after keyword

This commit is contained in:
Sergey Sharybin
2018-08-30 17:34:11 +02:00
parent caa12b17e2
commit 94ea566b5a
3 changed files with 5 additions and 5 deletions

View File

@@ -57,13 +57,13 @@ void DebugFlags::CPU::reset()
#undef STRINGIFY
#undef CHECK_CPU_FLAGS
if (getenv("CYCLES_BVH2") != NULL) {
if(getenv("CYCLES_BVH2") != NULL) {
bvh_layout = BVH_LAYOUT_BVH2;
}
else if (getenv("CYCLES_BVH4") != NULL) {
else if(getenv("CYCLES_BVH4") != NULL) {
bvh_layout = BVH_LAYOUT_BVH4;
}
else if (getenv("CYCLES_BVH8") != NULL) {
else if(getenv("CYCLES_BVH8") != NULL) {
bvh_layout = BVH_LAYOUT_BVH8;
}
else {