From 67448246d32d448dab43fe4994a8e788cb727c45 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 13 Sep 2009 17:38:49 +0000 Subject: (svn r17527) -Codechange: use QSortT instead of qsort for sorting smallmaps --- src/core/smallmap_type.hpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'src/core/smallmap_type.hpp') 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 @@ -105,14 +106,12 @@ struct SmallMap : SmallVector, 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; } }; -- cgit v1.2.3-54-g00ecf