aboutsummaryrefslogtreecommitdiff
path: root/src/client/QXmppTrustMemoryStorage.cpp
diff options
context:
space:
mode:
authorLinus Jahn <lnj@kaidan.im>2021-09-30 17:05:24 +0200
committerLinus Jahn <lnj@kaidan.im>2021-09-30 17:29:56 +0200
commit1d6c54d21dd2287d6b1f13d97984e45d653908dd (patch)
tree1e068ad838643e6686723941466f6082d3a19786 /src/client/QXmppTrustMemoryStorage.cpp
parentfcbc17a52c0983b21630bcc910c0bc6f9c20444c (diff)
downloadqxmpp-1d6c54d21dd2287d6b1f13d97984e45d653908dd.tar.gz
TrustMemStorage: Remove now unused comparison operators
Diffstat (limited to 'src/client/QXmppTrustMemoryStorage.cpp')
-rw-r--r--src/client/QXmppTrustMemoryStorage.cpp15
1 files changed, 0 insertions, 15 deletions
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;