Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-08-30 18:34:11 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-08-30 18:34:11 +0300
commit94ea566b5a185bd99c57eeaad974253896e0041c (patch)
treed1fa612fb95356b5f422586a9b031f5849cbbe49 /intern/cycles/util
parentcaa12b17e2dea36b28539daa809f739f7012a0cf (diff)
Cycles: Cleanup, whitespace after keyword
Diffstat (limited to 'intern/cycles/util')
-rw-r--r--intern/cycles/util/util_debug.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/intern/cycles/util/util_debug.cpp b/intern/cycles/util/util_debug.cpp
index a761c9c46de..68e6f261057 100644
--- a/intern/cycles/util/util_debug.cpp
+++ b/intern/cycles/util/util_debug.cpp
@@ -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 {