From 8b82a0e0fc5cac9a5376f06955ca4419b9a9923f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Juli=C3=A1n=20Merelo=20Guerv=C3=B3s?= Date: Fri, 20 Sep 2024 02:06:23 +0200 Subject: [PATCH] std.DynamicBitSet: remove wrong and useless comments (#21418) --- lib/std/bit_set.zig | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/std/bit_set.zig b/lib/std/bit_set.zig index 1e2a0179ef9e..7ff97cfa9dac 100644 --- a/lib/std/bit_set.zig +++ b/lib/std/bit_set.zig @@ -1043,10 +1043,7 @@ pub const DynamicBitSet = struct { /// The integer type used to shift a mask in this bit set pub const ShiftInt = std.math.Log2Int(MaskInt); - /// The allocator used by this bit set allocator: Allocator, - - /// The number of valid items in this bit set unmanaged: DynamicBitSetUnmanaged = .{}, /// Creates a bit set with no elements present.