Simplify std::fill with std::array::fill

This commit is contained in:
mitaclaw
2024-08-22 19:26:08 -07:00
parent 7db13d23c9
commit 809766a439
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ private:
std::array<uint32_t, 36 + sizeof...(ExtraMatches)> _conns;
std::optional<V> _val;
TrieEntry() { std::fill(_conns.begin(), _conns.end(), INVALID_CONN); }
TrieEntry() { _conns.fill(INVALID_CONN); }
};
constexpr size_t IndexOf(char c) const