Cleanup: name parameters instead of commenting them.

It generates warning C4138 in MSVC:
> '*/' found outside of comment

Old code added in {rBafd13710b897}
This commit is contained in:
Ankit Meel 2020-10-28 21:48:14 +05:30
parent 683dc71c3c
commit 9f8acce3ab
1 changed files with 2 additions and 2 deletions

View File

@ -45,8 +45,8 @@
*
* \note modified to use glibc arg order for callbacks.
*/
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*/);
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) \