From 250398b1e4f102e4e44eeb9e2aebf0cd2d397344 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Wed, 1 Oct 2014 11:28:01 -0400 Subject: [PATCH] Hide other bubble-sort --- src/hb-private.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-private.hh b/src/hb-private.hh index 63ebc652a..cac021ae4 100644 --- a/src/hb-private.hh +++ b/src/hb-private.hh @@ -922,7 +922,7 @@ hb_bubble_sort (T *array, unsigned int len, int(*compar)(const T *, const T *), } while (k); } -template inline void +template static inline void hb_bubble_sort (T *array, unsigned int len, int(*compar)(const T *, const T *)) { hb_bubble_sort (array, len, compar, (int *) NULL);