Fix T56195: Typo in BLI_array_utils.h.

This commit is contained in:
Bastien Montagne 2018-08-01 16:12:36 +02:00
parent 583b2f9a3d
commit 9336aef4eb
Notes: blender-bot 2023-02-14 05:30:19 +01:00
Referenced by issue #56195, Typo in BLI_array_utils.h
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ void _bli_array_permute(
const unsigned int *index, void *arr_temp);
#define BLI_array_permute(arr, arr_len, order) \
_bli_array_permute(arr, arr_len, sizeof(*(arr)), order, NULL)
#define BLI_array_permute_ex(arr, arr_len, index, arr_temp) \
#define BLI_array_permute_ex(arr, arr_len, order, arr_temp) \
_bli_array_permute(arr, arr_len, sizeof(*(arr)), order, arr_temp)
int _bli_array_findindex(const void *arr, unsigned int arr_len, size_t arr_stride, const void *p);