From a4a1129385731c3999a6d5986a24fc069938245c Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Mon, 25 Dec 2017 09:17:39 +0900 Subject: ReceiptEvent: use QVector instead of std::vector Because we should practice what we preach in CONTRIBUTING.md. --- events/receiptevent.cpp | 6 +++--- events/receiptevent.h | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/events/receiptevent.cpp b/events/receiptevent.cpp index b36ddb23..e30fe4e4 100644 --- a/events/receiptevent.cpp +++ b/events/receiptevent.cpp @@ -56,15 +56,15 @@ ReceiptEvent::ReceiptEvent(const QJsonObject& obj) continue; } const QJsonObject reads = eventIt.value().toObject().value("m.read").toObject(); - std::vector receipts; - receipts.reserve(static_cast(reads.size())); + QVector receipts; + receipts.reserve(reads.size()); for( auto userIt = reads.begin(); userIt != reads.end(); ++userIt ) { const QJsonObject user = userIt.value().toObject(); receipts.push_back({userIt.key(), QMatrixClient::fromJson(user["ts"])}); } - _eventsWithReceipts.push_back({eventIt.key(), receipts}); + _eventsWithReceipts.push_back({eventIt.key(), std::move(receipts)}); } static const auto UnreadMsgsKey = QStringLiteral("x-qmatrixclient.unread_messages"); diff --git a/events/receiptevent.h b/events/receiptevent.h index 15fdf946..9494c7c6 100644 --- a/events/receiptevent.h +++ b/events/receiptevent.h @@ -30,9 +30,9 @@ namespace QMatrixClient struct ReceiptsForEvent { QString evtId; - std::vector receipts; + QVector receipts; }; - using EventsWithReceipts = std::vector; + using EventsWithReceipts = QVector; class ReceiptEvent: public Event { -- cgit v1.2.3