From d1dfe71769accc391a0a722bd4627b2d18389874 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Wed, 14 Sep 2016 09:54:31 +0900 Subject: Use Receipt by reference in a loop Thanks to Clang for pointing this out. --- room.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/room.cpp b/room.cpp index 56b300b0..c7bf0208 100644 --- a/room.cpp +++ b/room.cpp @@ -474,7 +474,7 @@ void Room::processEphemeralEvent(Event* event) for( QString eventId: receiptEvent->events() ) { const auto receipts = receiptEvent->receiptsForEvent(eventId); - for( const Receipt r: receipts ) + for( const Receipt& r: receipts ) { d->lastReadEvent.insert(d->connection->user(r.userId), eventId); } -- cgit v1.2.3