| ... | @@ -872,7 +872,7 @@ pub const DynamicBitSet = struct { | ... | @@ -872,7 +872,7 @@ pub const DynamicBitSet = struct { |
| 872 | /// ascending order. Modifications to the underlying bit set may | 872 | /// ascending order. Modifications to the underlying bit set may |
| 873 | /// or may not be observed by the iterator. Resizing the underlying | 873 | /// or may not be observed by the iterator. Resizing the underlying |
| 874 | /// bit set invalidates the iterator. | 874 | /// bit set invalidates the iterator. |
| 875 | pub fn iterator(self: *Self, comptime options: IteratorOptions) Iterator(options) { | 875 | pub fn iterator(self: *const Self, comptime options: IteratorOptions) Iterator(options) { |
| 876 | return self.unmanaged.iterator(options); | 876 | return self.unmanaged.iterator(options); |
| 877 | } | 877 | } |
| 878 | | 878 | |