We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6956cf5 commit da3663aCopy full SHA for da3663a
src/support/bitset.h
@@ -126,8 +126,8 @@ class BitSet : std::vector<bool> {
126
BitSet& operator=(const BitSet&) = default;
127
BitSet& operator=(BitSet&&) = default;
128
129
- iterator begin() const noexcept { return iterator({this}); }
130
- 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()}; }
131
132
bool empty() const noexcept { return begin() == end(); }
133
0 commit comments