diff --git a/src/hb-algs.hh b/src/hb-algs.hh index cc99749cf..1cae34686 100644 --- a/src/hb-algs.hh +++ b/src/hb-algs.hh @@ -53,13 +53,13 @@ struct hb_pair_t template static inline hb_pair_t hb_pair (T1 a, T2 b) { return hb_pair_t (a, b); } -static struct +static HB_UNUSED struct { template typename Pair::first_t operator () (const Pair& pair) const { return pair.first; } } hb_first; -static struct +static HB_UNUSED struct { template typename Pair::second_t operator () (const Pair& pair) const { return pair.second; }