Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tlively committed Oct 30, 2023
1 parent 6f790d5 commit 776ece1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/support/bitset.h
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ class BitSet : std::vector<bool> {
BitSet& operator=(const BitSet&) = default;
BitSet& operator=(BitSet&&) = default;

iterator begin() const noexcept { return iterator({this}); }
iterator end() const noexcept { return iterator({this, vec().size()}); }
iterator begin() const noexcept { return iterator{this}; }
iterator end() const noexcept { return iterator{this, vec().size()}; }

bool empty() const noexcept { return begin() == end(); }

Expand Down

0 comments on commit 776ece1

Please sign in to comment.