File diff r18781:e1de9a06f7cd → r18782:6453522c2154
src/core/sort_func.hpp
Show inline comments
 
@@ -25,7 +25,7 @@
 
 * @param desc Sort descending.
 
 */
 
template <typename T>
 
static FORCEINLINE void QSortT(T *base, uint num, int (CDECL *comparator)(const T*, const T*), bool desc = false)
 
static inline void QSortT(T *base, uint num, int (CDECL *comparator)(const T*, const T*), bool desc = false)
 
{
 
	if (num < 2) return;