From 4d321b1cf0bec6941e9c122eb652d93bf2db4815 Mon Sep 17 00:00:00 2001 From: John Preston Date: Wed, 3 Apr 2019 13:09:49 +0400 Subject: [PATCH] Fix crash in Clang in Xcode 10.2. --- Telegram/SourceFiles/chat_helpers/field_autocomplete.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/chat_helpers/field_autocomplete.cpp b/Telegram/SourceFiles/chat_helpers/field_autocomplete.cpp index 4187513fe..e0a52d749 100644 --- a/Telegram/SourceFiles/chat_helpers/field_autocomplete.cpp +++ b/Telegram/SourceFiles/chat_helpers/field_autocomplete.cpp @@ -234,7 +234,8 @@ void FieldAutocomplete::updateFiltered(bool resetScroll) { bool listAllSuggestions = _filter.isEmpty(); auto &recent(cRecentWriteHashtags()); hrows.reserve(recent.size()); - for (const auto &[tag, ratio] : recent) { + for (const auto &item : recent) { + const auto &tag = item.first; if (!listAllSuggestions && (tag.size() == _filter.size() || !TextUtilities::RemoveAccents(tag).startsWith(