Hide other bubble-sort

This commit is contained in:
Behdad Esfahbod 2014-10-01 11:28:01 -04:00
parent c1e8744262
commit 250398b1e4
1 changed files with 1 additions and 1 deletions

View File

@ -922,7 +922,7 @@ hb_bubble_sort (T *array, unsigned int len, int(*compar)(const T *, const T *),
} while (k); } while (k);
} }
template <typename T> inline void template <typename T> static inline void
hb_bubble_sort (T *array, unsigned int len, int(*compar)(const T *, const T *)) hb_bubble_sort (T *array, unsigned int len, int(*compar)(const T *, const T *))
{ {
hb_bubble_sort (array, len, compar, (int *) NULL); hb_bubble_sort (array, len, compar, (int *) NULL);