Fix QSort less than having wrong prototype

This commit is contained in:
2025-06-29 00:15:06 +10:00
parent e1eb6203c4
commit d4adf81019
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -192,7 +192,7 @@ template <typename T> DN_BinarySearchResult DN_BinarySearch (T co
DN_BinarySearchLessThanProc<T> less_than = DN_BinarySearch_DefaultLessThan);
// NOTE: DN_QSort //////////////////////////////////////////////////////////////////////////////////
template <typename T> bool DN_QSort_DefaultLessThan(T const &lhs, T const &rhs);
template <typename T> bool DN_QSort_DefaultLessThan(T const &lhs, T const &rhs, void *user_context);
template <typename T> void DN_QSort (T *array,
DN_USize array_size,
void *user_context,