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/source
diff options
context:
space:
mode:
authorAnkit Meel <ankitjmeel@gmail.com>2020-10-21 10:51:00 +0300
committerAnkit Meel <ankitjmeel@gmail.com>2020-10-21 10:51:00 +0300
commitafd13710b897cc1c11ba2811001bab8fe142d148 (patch)
treec3c9b124914ca2b5362de05f3b331542e59b965e /source
parent7ac6f4d26cff2c4a05e78f05fb6e9947a7760629 (diff)
Cleanup: Clang-tidy readability-named-parameter
No functional change.
Diffstat (limited to 'source')
-rw-r--r--source/blender/blenlib/intern/sort.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/intern/sort.c b/source/blender/blenlib/intern/sort.c
index 4ae87fff535..e65be760a2c 100644
--- a/source/blender/blenlib/intern/sort.c
+++ b/source/blender/blenlib/intern/sort.c
@@ -45,8 +45,8 @@
*
* \note modified to use glibc arg order for callbacks.
*/
-BLI_INLINE char *med3(char *, char *, char *, BLI_sort_cmp_t, void *);
-BLI_INLINE void swapfunc(char *, char *, int, int);
+BLI_INLINE char *med3(char */*a*/, char */*b*/, char */*c*/, BLI_sort_cmp_t /*cmp*/, void */*thunk*/);
+BLI_INLINE void swapfunc(char */*a*/, char */*b*/, int /*n*/, int /*swaptype*/);
#define min(a, b) (a) < (b) ? (a) : (b)
#define swapcode(TYPE, parmi, parmj, n) \