From 1d6c54d21dd2287d6b1f13d97984e45d653908dd Mon Sep 17 00:00:00 2001 From: Linus Jahn Date: Thu, 30 Sep 2021 17:05:24 +0200 Subject: TrustMemStorage: Remove now unused comparison operators --- src/client/QXmppTrustMemoryStorage.cpp | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'src/client/QXmppTrustMemoryStorage.cpp') diff --git a/src/client/QXmppTrustMemoryStorage.cpp b/src/client/QXmppTrustMemoryStorage.cpp index d0d21422..1e2b5904 100644 --- a/src/client/QXmppTrustMemoryStorage.cpp +++ b/src/client/QXmppTrustMemoryStorage.cpp @@ -41,13 +41,6 @@ using namespace QXmpp::Private; struct ProcessedKey { - bool operator==(const ProcessedKey &other) const - { - return id == other.id && - ownerJid == other.ownerJid && - trustLevel == other.trustLevel; - } - QString id; QString ownerJid; QXmppTrustStorage::TrustLevel trustLevel; @@ -55,14 +48,6 @@ struct ProcessedKey struct UnprocessedKey { - bool operator==(const UnprocessedKey &other) const - { - return id == other.id && - ownerJid == other.ownerJid && - senderKeyId == other.senderKeyId && - trust == other.trust; - } - QString id; QString ownerJid; QString senderKeyId; -- cgit v1.2.3