From 7cce809cb11e0ce65dbdab899779ece3dc337763 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sat, 21 Feb 2015 12:41:08 +0300 Subject: [PATCH] Remove unused (and wrong as of a few commits ago) cmp() function --- src/hb-open-type-private.hh | 1 - 1 file changed, 1 deletion(-) 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;