Cleanup: Clang-tidy readability-named-parameter

No functional change.
This commit is contained in:
Ankit Meel 2020-10-21 13:21:00 +05:30
parent 7ac6f4d26c
commit afd13710b8
Notes: blender-bot 2023-02-14 00:20:15 +01:00
Referenced by commit 9f8acce3ab, Cleanup: name parameters instead of commenting them.
Referenced by commit 2ddecfffc3, Fix T81077 id_management test on macOS
2 changed files with 2 additions and 3 deletions

View File

@ -18,7 +18,6 @@ Checks: >
-readability-redundant-member-init,
-readability-use-anyofallof,
-readability-named-parameter,
-readability-function-cognitive-complexity,
bugprone-*,

View File

@ -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) \