| author | |
| committer | |
| log | fdd97244fda948e0033034aba8042c8fdfb5d484 |
| tree | 3f098dd783a7f7d80c3b9636935e3ef6d226e831 |
| parent | 011a468381a0217bff7f98817c0df593cbcc85ec |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/bit_set.zig+1-1| ... | ... | @@ -872,7 +872,7 @@ pub const DynamicBitSet = struct { |
| 872 | 872 | /// ascending order. Modifications to the underlying bit set may |
| 873 | 873 | /// or may not be observed by the iterator. Resizing the underlying |
| 874 | 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 | 876 | return self.unmanaged.iterator(options); |
| 877 | 877 | } |
| 878 | 878 |