lint
diff --git a/src/support/bitset.h b/src/support/bitset.h
index 74c915c..ee6fde3 100644
--- a/src/support/bitset.h
+++ b/src/support/bitset.h
@@ -126,8 +126,8 @@
   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(); }