diff --git a/src/lte/model/lte-rlc-sequence-number.h b/src/lte/model/lte-rlc-sequence-number.h index f583603bd..af85f6d85 100644 --- a/src/lte/model/lte-rlc-sequence-number.h +++ b/src/lte/model/lte-rlc-sequence-number.h @@ -125,6 +125,11 @@ public: return (!this->operator> (other)); } + bool operator >= (const SequenceNumber10 &other) const + { + return (this->operator> (other) || this->operator== (other)); + } + bool operator < (const SequenceNumber10 &other) const { return !this->operator> (other) && m_value != other.m_value;