diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-03-26 08:29:31 -0400 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-03-26 08:29:31 -0400 |
commit | 85d0ea867ee9b607595962dc93d4f09ac0ae1f9a (patch) | |
tree | 513af467fcb34697ec1a59c7d3671b33d9621b6b | |
parent | 39a8c43d96896aa1401a791b246de53794e06f65 (diff) | |
download | libquotient-85d0ea867ee9b607595962dc93d4f09ac0ae1f9a.tar.gz libquotient-85d0ea867ee9b607595962dc93d4f09ac0ae1f9a.zip |
Fix compilation on some environments
...where deque<>::difference_type is long rather than int.
-rw-r--r-- | room.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -371,9 +371,11 @@ void Room::Private::updateUnreadCount(timeline_iter_t from, int knownMinimum) Q_ASSERT(from >= q->readMarker().base() && from < timeline.cend()); auto oldUnreadCount = unreadMessages; QElapsedTimer et; et.start(); + // A cast to int, because on some environments count_if returns a long; + // but Qt can only handle int's for container indices etc. unreadMessages = std::max(knownMinimum, - count_if(from, timeline.cend(), - std::bind(&Room::Private::isEventNotable, this, _1))); + int(count_if(from, timeline.cend(), + std::bind(&Room::Private::isEventNotable, this, _1)))); if (et.elapsed() > 10) qCDebug(PROFILER) << "Recounting unread messages took" << et; |