mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-22 21:58:08 +00:00
Do not compare parameters when comparing ContentType
This commit is contained in:
parent
3a6fe51939
commit
75b80bbe98
1 changed files with 1 additions and 2 deletions
|
|
@ -130,8 +130,7 @@ ContentType &ContentType::operator= (const ContentType &other) {
|
|||
|
||||
bool ContentType::operator== (const ContentType &other) const {
|
||||
return getType() == other.getType() &&
|
||||
getSubType() == other.getSubType() &&
|
||||
getParameters() == other.getParameters();
|
||||
getSubType() == other.getSubType();
|
||||
}
|
||||
|
||||
bool ContentType::operator!= (const ContentType &other) const {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue