mirror of https://github.com/procxx/kepka.git
Fix crash in Clang in Xcode 10.2.
This commit is contained in:
parent
84858b8940
commit
4d321b1cf0
|
@ -234,7 +234,8 @@ void FieldAutocomplete::updateFiltered(bool resetScroll) {
|
||||||
bool listAllSuggestions = _filter.isEmpty();
|
bool listAllSuggestions = _filter.isEmpty();
|
||||||
auto &recent(cRecentWriteHashtags());
|
auto &recent(cRecentWriteHashtags());
|
||||||
hrows.reserve(recent.size());
|
hrows.reserve(recent.size());
|
||||||
for (const auto &[tag, ratio] : recent) {
|
for (const auto &item : recent) {
|
||||||
|
const auto &tag = item.first;
|
||||||
if (!listAllSuggestions
|
if (!listAllSuggestions
|
||||||
&& (tag.size() == _filter.size()
|
&& (tag.size() == _filter.size()
|
||||||
|| !TextUtilities::RemoveAccents(tag).startsWith(
|
|| !TextUtilities::RemoveAccents(tag).startsWith(
|
||||||
|
|
Loading…
Reference in New Issue