Alpha version 1.2.5: Workaround GCC 7.2 ICE.

This commit is contained in:
John Preston 2017-12-29 21:47:49 +03:00
parent 719f3428ec
commit ea51f976f2
1 changed files with 6 additions and 3 deletions

View File

@ -443,7 +443,8 @@ void GroupThumbs::fillDyingItems(const std::vector<not_null<Thumb*>> &old) {
void GroupThumbs::markRestAsDying() { void GroupThumbs::markRestAsDying() {
_dying.reserve(_cache.size() - _items.size()); _dying.reserve(_cache.size() - _items.size());
for (const auto &[key, thumb] : _cache) { for (const auto &cacheItem : _cache) {
const auto &thumb = cacheItem.second;
const auto state = thumb->state(); const auto state = thumb->state();
if (state == Thumb::State::Unknown) { if (state == Thumb::State::Unknown) {
markAsDying(thumb.get()); markAsDying(thumb.get());
@ -518,7 +519,8 @@ void GroupThumbs::markCacheStale() {
while (!_dying.empty()) { while (!_dying.empty()) {
_dying.pop_back(); _dying.pop_back();
} }
for (const auto &[key, thumb] : _cache) { for (const auto &cacheItem : _cache) {
const auto &thumb = cacheItem.second;
thumb->setState(Thumb::State::Unknown); thumb->setState(Thumb::State::Unknown);
} }
} }
@ -617,7 +619,8 @@ void GroupThumbs::paint(
ClickHandlerPtr GroupThumbs::getState(QPoint point) const { ClickHandlerPtr GroupThumbs::getState(QPoint point) const {
point -= QPoint((_width / 2), st::mediaviewGroupPadding.top()); point -= QPoint((_width / 2), st::mediaviewGroupPadding.top());
for (const auto &[key, thumb] : _cache) { for (const auto &cacheItem : _cache) {
const auto &thumb = cacheItem.second;
if (auto link = thumb->getState(point)) { if (auto link = thumb->getState(point)) {
return link; return link;
} }