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:
authorCampbell Barton <ideasman42@gmail.com>2021-03-10 07:35:43 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-03-10 07:35:58 +0300
commit3e67e2a36e92fad95099dada8727486746722428 (patch)
treeedee3af5d49135f030a5dde14e7f289488c3e340 /source/blender/blenlib/BLI_array_utils.h
parent53b82efed66baddff3b7ef6c93a919ef10f4ef42 (diff)
Cleanup: compiler warning (ignored-qualifiers)
Diffstat (limited to 'source/blender/blenlib/BLI_array_utils.h')
-rw-r--r--source/blender/blenlib/BLI_array_utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_array_utils.h b/source/blender/blenlib/BLI_array_utils.h
index 8f4630dd732..2847bc960ad 100644
--- a/source/blender/blenlib/BLI_array_utils.h
+++ b/source/blender/blenlib/BLI_array_utils.h
@@ -93,7 +93,7 @@ bool _bli_array_iter_spiral_square(const void *arr_v,
const int arr_shape[2],
const size_t elem_size,
const int center[2],
- const bool (*test_fn)(const void *arr_item, void *user_data),
+ bool (*test_fn)(const void *arr_item, void *user_data),
void *user_data);
#define BLI_array_iter_spiral_square(arr, arr_shape, center, test_fn, user_data) \
_bli_array_iter_spiral_square(arr, arr_shape, sizeof(*(arr)), center, test_fn, user_data)