mirror of
https://github.com/mawww/kakoune.git
synced 2024-12-18 17:02:06 +03:00
parent
75767f5cb5
commit
7062022187
@ -54,7 +54,9 @@ struct HashIndex
|
||||
|
||||
constexpr void reserve(size_t count)
|
||||
{
|
||||
kak_assert(count > 0);
|
||||
if (count == 0)
|
||||
return;
|
||||
|
||||
const size_t min_size = (size_t)(count / max_fill_rate) + 1;
|
||||
size_t new_size = m_entries.empty() ? 4 : m_entries.size();
|
||||
while (new_size < min_size)
|
||||
|
Loading…
Reference in New Issue
Block a user