diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-09-14 09:54:31 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-09-14 10:09:36 +0900 |
commit | d1dfe71769accc391a0a722bd4627b2d18389874 (patch) | |
tree | daefd04926f000ff6e6ccb8ab9edadccdf1c2926 | |
parent | cf10a4e9e6bcfa7932f166b251563b990f0dd61e (diff) | |
download | libquotient-d1dfe71769accc391a0a722bd4627b2d18389874.tar.gz libquotient-d1dfe71769accc391a0a722bd4627b2d18389874.zip |
Use Receipt by reference in a loop
Thanks to Clang for pointing this out.
-rw-r--r-- | room.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |