summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2014-10-01 11:28:01 -0400
committerBehdad Esfahbod <behdad@behdad.org>2014-10-01 11:28:59 -0400
commit250398b1e4f102e4e44eeb9e2aebf0cd2d397344 (patch)
treed00783f5371191c0a8abd6b69ef70539f6948acf
parentc1e87442621beff98791ce56cfd1ccee506c4ee6 (diff)
Hide other bubble-sort
-rw-r--r--src/hb-private.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hb-private.hh b/src/hb-private.hh
index 63ebc652..cac021ae 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 <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 (array, len, compar, (int *) NULL);