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
path: root/intern
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-09-19 19:41:43 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-09-19 19:41:43 +0300
commita5101e4da8d81161482106d8d8d46ae49be6e18c (patch)
treef99b30ff1510efbcb3e56c38e725ee417178ef1f /intern
parenta4f2ebc78da4e10e65e864a16d2e621c7c79103d (diff)
Cycles: Cleanup, double semicolon
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/device/device_cuda.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/device/device_cuda.cpp b/intern/cycles/device/device_cuda.cpp
index da8e49f129f..7d9a13ecc88 100644
--- a/intern/cycles/device/device_cuda.cpp
+++ b/intern/cycles/device/device_cuda.cpp
@@ -1667,7 +1667,7 @@ public:
for(int sample = start_sample; sample < end_sample; sample += step_samples) {
/* Setup and copy work tile to device. */
wtile->start_sample = sample;
- wtile->num_samples = min(step_samples, end_sample - sample);;
+ wtile->num_samples = min(step_samples, end_sample - sample);
work_tiles.copy_to_device();
CUdeviceptr d_work_tiles = cuda_device_ptr(work_tiles.device_pointer);