MCS: remove dead code

As a preparation for (M)CS fixes in follow-up patches, remove unused
operators from GprsCodingScheme class.

Change-Id: Ieef3b095a6732300e5efa395b989843112b9ca78
This commit is contained in:
Max 2019-02-26 20:13:09 +01:00 committed by Harald Welte
parent 360e021d0a
commit 9feaddc390
1 changed files with 0 additions and 14 deletions

View File

@ -212,20 +212,6 @@ inline bool operator <(GprsCodingScheme a, GprsCodingScheme b)
GprsCodingScheme::Scheme(a) < GprsCodingScheme::Scheme(b);
}
inline bool operator >(GprsCodingScheme a, GprsCodingScheme b)
{
return b < a;
}
inline bool operator <=(GprsCodingScheme a, GprsCodingScheme b)
{
return a == b || a < b;
}
inline bool operator >=(GprsCodingScheme a, GprsCodingScheme b)
{
return a == b || a > b;
}
inline GprsCodingScheme::Scheme GprsCodingScheme::get_retx_mcs(
const GprsCodingScheme mcs,
const GprsCodingScheme demanded_mcs,