diff --git a/src/hb-open-type-private.hh b/src/hb-open-type-private.hh index 2572b3e99..0989a8bb4 100644 --- a/src/hb-open-type-private.hh +++ b/src/hb-open-type-private.hh @@ -599,7 +599,6 @@ struct IntType inline bool operator == (const IntType &o) const { return (Type) v == (Type) o.v; } inline bool operator != (const IntType &o) const { return !(*this == o); } static inline int cmp (const IntType *a, const IntType *b) { return b->cmp (*a); } - inline int cmp (IntType va) const { Type a = va; return cmp (va); } inline int cmp (Type a) const { Type b = v;