authorgravatar for jjmerelo@gmail.comJuan Julián Merelo Guervós <jjmerelo@gmail.com> 2024-09-20 02:06:23+02:00
committergravatar for noreply@github.comGitHub <noreply@github.com> 2024-09-19 17:06:23-07:00
log8b82a0e0fc5cac9a5376f06955ca4419b9a9923f
tree8dbdb32e64c4a8e8de9d5d20f6ee5bc6327b77cf
parent72fc1641786082cb82355dac5d357bc2398bd51e
signaturebadge-check Signed by PGP key B5690EEEBB952194

std.DynamicBitSet: remove wrong and useless comments (#21418)


1 files changed, 0 insertions(+), 3 deletions(-)

lib/std/bit_set.zig-3
......@@ -1043,10 +1043,7 @@ pub const DynamicBitSet = struct {
10431043 /// The integer type used to shift a mask in this bit set
10441044 pub const ShiftInt = std.math.Log2Int(MaskInt);
10451045
1046 /// The allocator used by this bit set
10471046 allocator: Allocator,
1048
1049 /// The number of valid items in this bit set
10501047 unmanaged: DynamicBitSetUnmanaged = .{},
10511048
10521049 /// Creates a bit set with no elements present.