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");...@@ -18,9 +18,9 @@ pub const FixedBufferAllocator = @import("heap/FixedBufferAllocator.zig");
18pub const DebugAllocatorConfig = @import("heap/debug_allocator.zig").Config;18pub const DebugAllocatorConfig = @import("heap/debug_allocator.zig").Config;
19pub const DebugAllocator = @import("heap/debug_allocator.zig").DebugAllocator;19pub const DebugAllocator = @import("heap/debug_allocator.zig").DebugAllocator;
20pub const Check = enum { ok, leak };20pub 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.
22pub const GeneralPurposeAllocatorConfig = DebugAllocatorConfig;22pub 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.
24pub const GeneralPurposeAllocator = DebugAllocator;24pub const GeneralPurposeAllocator = DebugAllocator;
2525
26const memory_pool = @import("heap/memory_pool.zig");26const memory_pool = @import("heap/memory_pool.zig");