aboutsummaryrefslogtreecommitdiff
path: root/lib/room.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/room.cpp')
-rw-r--r--lib/room.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/room.cpp b/lib/room.cpp
index 492845d7..0fc7d23e 100644
--- a/lib/room.cpp
+++ b/lib/room.cpp
@@ -368,7 +368,7 @@ public:
#ifdef Quotient_E2EE_ENABLED
// A map from (senderKey, sessionId) to InboundGroupSession
- UnorderedMap<QPair<QString, QString>, QOlmInboundGroupSessionPtr> groupSessions;
+ UnorderedMap<std::pair<QString, QString>, QOlmInboundGroupSessionPtr> groupSessions;
bool addInboundGroupSession(QString senderKey, QString sessionId,
QString sessionKey)
@@ -397,7 +397,7 @@ public:
const QString& eventId,
QDateTime timestamp)
{
- const auto senderSessionPairKey = qMakePair(senderKey, sessionId);
+ const auto senderSessionPairKey = make_pair(senderKey, sessionId);
auto groupSessionIt = groupSessions.find(senderSessionPairKey);
if (groupSessionIt == groupSessions.end()) {
// qCWarning(E2EE) << "Unable to decrypt event" << eventId