Remove unused (and wrong as of a few commits ago) cmp() function

This commit is contained in:
Behdad Esfahbod 2015-02-21 12:41:08 +03:00
parent 8e3d4bae03
commit 7cce809cb1
1 changed files with 0 additions and 1 deletions

View File

@ -599,7 +599,6 @@ struct IntType
inline bool operator == (const IntType<Type,Size> &o) const { return (Type) v == (Type) o.v; }
inline bool operator != (const IntType<Type,Size> &o) const { return !(*this == o); }
static inline int cmp (const IntType<Type,Size> *a, const IntType<Type,Size> *b) { return b->cmp (*a); }
inline int cmp (IntType<Type,Size> va) const { Type a = va; return cmp (va); }
inline int cmp (Type a) const
{
Type b = v;