Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MAINT: Fix warnings in radixsort.c.src: comparing integers of differe…
…nt signs Eliminate many compiler warnings of the form: numpy/core/src/npysort/radixsort.c.src:61:23: warning: comparison of integers of different signs: 'npy_intp' (aka 'long') and 'unsigned long' [-Wsign-compare] for (l = 0; l < sizeof(npy_ubyte); l++) { ~ ^ ~~~~~~~~~~~~~~~~~ numpy/core/src/npysort/radixsort.c.src:66:19: warning: comparison of integers of different signs: 'npy_intp' (aka 'long') and 'unsigned long' [-Wsign-compare] for (l = 0; l < sizeof(npy_ubyte); l++) { ~ ^ ~~~~~~~~~~~~~~~~~
- Loading branch information