From f60d3ed35d94f1adcfd73ca05d03d7e81fb5de03 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sun, 4 Nov 2012 16:44:47 -0800 Subject: [PATCH] Minor --- src/hb-set-private.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-set-private.hh b/src/hb-set-private.hh index 44135792..43cf925b 100644 --- a/src/hb-set-private.hh +++ b/src/hb-set-private.hh @@ -98,7 +98,7 @@ struct hb_set_digest_lowest_bits_t private: - mask_t mask_for (hb_codepoint_t g) const { return ((mask_t) 1) << (g & (sizeof (mask_t) * 8 - 1)); } + static inline mask_t mask_for (hb_codepoint_t g) { return ((mask_t) 1) << (g & (sizeof (mask_t) * 8 - 1)); } mask_t mask; }; -- GitLab