Fixed some constness in qrtplib

This commit is contained in:
f4exb 2019-03-09 09:17:10 +01:00
parent 99f6fef900
commit 6c1f8e2bfc
2 changed files with 2 additions and 2 deletions

View File

@ -77,7 +77,7 @@ bool RTPAddress::IsFromSameHost(const RTPAddress *addr) const
return addr->address == address;
}
bool RTPAddress::operator==(const RTPAddress& otherAddress)
bool RTPAddress::operator==(const RTPAddress& otherAddress) const
{
return IsSameAddress(&otherAddress);
}

View File

@ -94,7 +94,7 @@ public:
bool IsFromSameHost(const RTPAddress *addr) const;
/** Equality */
bool operator==(const RTPAddress& otherAddress);
bool operator==(const RTPAddress& otherAddress) const;
/** Get host address */
const QHostAddress& getAddress() const