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-11-09 14:08:51 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-11-09 14:08:51 +0300
commit203de0bbf05ed3952d1ee6c67cfc2d3de978b8e2 (patch)
tree25ceedbcdb4b936750050e02b289efea348591f1 /intern/cycles/subd
parent2330cadb0fbdc31b2eed415996e376a830c1e1b9 (diff)
Cycles: Cleanup, space after (void)
It was used in like 95% of places.
Diffstat (limited to 'intern/cycles/subd')
-rw-r--r--intern/cycles/subd/subd_patch_table.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/cycles/subd/subd_patch_table.cpp b/intern/cycles/subd/subd_patch_table.cpp
index 13a6f284542..0e9d3f37af4 100644
--- a/intern/cycles/subd/subd_patch_table.cpp
+++ b/intern/cycles/subd/subd_patch_table.cpp
@@ -252,8 +252,8 @@ void PackedPatchTable::pack(Far::PatchTable* patch_table, int offset)
build_patch_map(*this, patch_table, offset);
#else
- (void)patch_table;
- (void)offset;
+ (void) patch_table;
+ (void) offset;
#endif
}