From d9f09be82b716c5261a36feb6006c4978d989d9e Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Tue, 3 Apr 2018 18:03:55 +0900 Subject: More fixes from static analysis --- lib/events/event.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/events/event.h b/lib/events/event.h index eccfec41..d614115a 100644 --- a/lib/events/event.h +++ b/lib/events/event.h @@ -141,7 +141,7 @@ namespace QMatrixClient // The below line accommodates the difference in size types of // STL and Qt containers. this->reserve(static_cast(objs.size())); - for (auto objValue: objs) + for (const auto& objValue: objs) this->emplace_back(makeEvent(objValue.toObject())); } }; -- cgit v1.2.3