Skip to content

Commit da3663a

Browse files
committed
lint
1 parent 6956cf5 commit da3663a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/support/bitset.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,8 @@ class BitSet : std::vector<bool> {
126126
BitSet& operator=(const BitSet&) = default;
127127
BitSet& operator=(BitSet&&) = default;
128128

129-
iterator begin() const noexcept { return iterator({this}); }
130-
iterator end() const noexcept { return iterator({this, vec().size()}); }
129+
iterator begin() const noexcept { return iterator{this}; }
130+
iterator end() const noexcept { return iterator{this, vec().size()}; }
131131

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

0 commit comments

Comments
 (0)