Make hb_in_range() static
authorBehdad Esfahbod <behdad@behdad.org>
Fri, 13 Jul 2012 13:45:54 +0000 (09:45 -0400)
committerBehdad Esfahbod <behdad@behdad.org>
Fri, 13 Jul 2012 13:45:54 +0000 (09:45 -0400)
src/hb-private.hh

index 70b87c9..29cd68c 100644 (file)
@@ -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 <typename T> inline bool
+template <typename T> static inline bool
 hb_in_range (T u, T lo, T hi)
 {
   if ( ((lo^hi) & lo) == 0 &&