Remove unused (and wrong as of a few commits ago) cmp() function
This commit is contained in:
parent
8e3d4bae03
commit
7cce809cb1
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue