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-01-09 12:47:01 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-01-09 18:09:33 +0300
commit932d448ae013b5425efa974be5a106d9d6a16652 (patch)
treea71a3920dacf38f67f3a92665bbf67e42c0afce0 /source/blender/blenlib/BLI_task.h
parent8cffb0a141af6dbfebc6917f2633ab92e26c4d8e (diff)
Task scheduler: Use const qualifiers in parallel range
Diffstat (limited to 'source/blender/blenlib/BLI_task.h')
-rw-r--r--source/blender/blenlib/BLI_task.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_task.h b/source/blender/blenlib/BLI_task.h
index 0f78d2f4361..52f32c2999f 100644
--- a/source/blender/blenlib/BLI_task.h
+++ b/source/blender/blenlib/BLI_task.h
@@ -184,7 +184,7 @@ BLI_INLINE void BLI_parallel_range_settings_defaults(
ParallelRangeSettings* settings);
void BLI_task_parallel_range(
- int start, int stop,
+ const int start, const int stop,
void *userdata,
TaskParallelRangeFunc func,
const ParallelRangeSettings *settings);