mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 10:38:20 +00:00
Fix clang-tidy modernize-return-braced-init-list findings
This commit is contained in:
parent
8c3eee7a87
commit
17c14a3ce1
9 changed files with 26 additions and 29 deletions
|
@ -350,7 +350,7 @@ bool BitVector::operator[](size_type i) const {
|
|||
|
||||
BitVector::Reference BitVector::operator[](size_type i) {
|
||||
assert(i < num_bits);
|
||||
return Reference(bits[block_index(i)], bit_index(i));
|
||||
return {bits[block_index(i)], bit_index(i)};
|
||||
}
|
||||
|
||||
BitVector::size_type BitVector::Count() const {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue