summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core/smallmap_type.hpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/core/smallmap_type.hpp b/src/core/smallmap_type.hpp
index a6f203774..68ee4aff5 100644
--- a/src/core/smallmap_type.hpp
+++ b/src/core/smallmap_type.hpp
@@ -13,6 +13,7 @@
#define SMALLMAP_TYPE_HPP
#include "smallvec_type.hpp"
+#include "sort_func.hpp"
/** Simple pair of data. Both types have to be POD ("Plain Old Data")! */
template <typename T, typename U>
@@ -105,14 +106,12 @@ struct SmallMap : SmallVector<SmallPair<T, U>, S> {
FORCEINLINE void SortByKey()
{
- qsort(this->Begin(), this->items, sizeof(Pair), KeySorter);
+ QSortT(this->Begin(), this->items, KeySorter);
}
- static int CDECL KeySorter(const void *a, const void *b)
+ static int CDECL KeySorter(const Pair *a, const Pair *b)
{
- const Pair *pa = (const Pair*)a;
- const Pair *pb = (const Pair*)b;
- return pa->first - pb->first;
+ return a->first - b->first;
}
};