authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-02-06 14:47:22-08:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-02-06 14:47:22-08:00
log1bb8b4ad61659da8b4f53faf959bfdc8415bf41e
treef620dd59dc56c94c8983fe0d7fbe81a394645e2f
parentff8e7597056aebc67213fff0b4942a66d0a4e1dd

std.heap: fix wrong deprecation date


1 files changed, 2 insertions(+), 2 deletions(-)

lib/std/heap.zig+2-2
......@@ -18,9 +18,9 @@ pub const FixedBufferAllocator = @import("heap/FixedBufferAllocator.zig");
1818pub const DebugAllocatorConfig = @import("heap/debug_allocator.zig").Config;
1919pub const DebugAllocator = @import("heap/debug_allocator.zig").DebugAllocator;
2020pub const Check = enum { ok, leak };
21/// Deprecated; to be removed after 0.15.0 is tagged.
21/// Deprecated; to be removed after 0.14.0 is tagged.
2222pub const GeneralPurposeAllocatorConfig = DebugAllocatorConfig;
23/// Deprecated; to be removed after 0.15.0 is tagged.
23/// Deprecated; to be removed after 0.14.0 is tagged.
2424pub const GeneralPurposeAllocator = DebugAllocator;
2525
2626const memory_pool = @import("heap/memory_pool.zig");