From b5aeb95afeb13a66177caada9f5d5ad4cddbd35f Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Fri, 13 Jul 2012 09:45:54 -0400 Subject: [PATCH] Make hb_in_range() static --- 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 70b87c9fb..29cd68c24 100644 --- a/src/hb-private.hh +++ b/src/hb-private.hh @@ -718,7 +718,7 @@ struct hb_auto_trace_t<0> { * Checks for lo <= u <= hi but with an optimization if lo and hi * are only different in a contiguous set of lower-most bits. */ -template inline bool +template static inline bool hb_in_range (T u, T lo, T hi) { if ( ((lo^hi) & lo) == 0 &&