summaryrefslogtreecommitdiff
path: root/src/core/sort_func.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/sort_func.hpp')
-rw-r--r--src/core/sort_func.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/sort_func.hpp b/src/core/sort_func.hpp
index 470a0ccf4..f3ac73a66 100644
--- a/src/core/sort_func.hpp
+++ b/src/core/sort_func.hpp
@@ -25,7 +25,7 @@
* @param desc Sort descending.
*/
template <typename T>
-static inline void QSortT(T *base, uint num, int (CDECL *comparator)(const T*, const T*), bool desc = false)
+static inline void QSortT(T *base, size_t num, int (CDECL *comparator)(const T*, const T*), bool desc = false)
{
if (num < 2) return;
@@ -49,7 +49,7 @@ static inline void QSortT(T *base, uint num, int (CDECL *comparator)(const T*, c
* @param desc Sort descending.
*/
template <typename T>
-static inline void GSortT(T *base, uint num, int (CDECL *comparator)(const T*, const T*), bool desc = false)
+static inline void GSortT(T *base, size_t num, int (CDECL *comparator)(const T*, const T*), bool desc = false)
{
if (num < 2) return;