zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 1bb8b4ad61659da8b4f53faf959bfdc8415bf41e (tree)
parent ff8e7597056aebc67213fff0b4942a66d0a4e1dd
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Thu,  6 Feb 2025 14:47:22 -0800

std.heap: fix wrong deprecation date

Diffstat:
Mlib/std/heap.zig | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/std/heap.zig b/lib/std/heap.zig @@ -18,9 +18,9 @@ pub const FixedBufferAllocator = @import("heap/FixedBufferAllocator.zig"); pub const DebugAllocatorConfig = @import("heap/debug_allocator.zig").Config; pub const DebugAllocator = @import("heap/debug_allocator.zig").DebugAllocator; pub const Check = enum { ok, leak }; -/// Deprecated; to be removed after 0.15.0 is tagged. +/// Deprecated; to be removed after 0.14.0 is tagged. pub const GeneralPurposeAllocatorConfig = DebugAllocatorConfig; -/// Deprecated; to be removed after 0.15.0 is tagged. +/// Deprecated; to be removed after 0.14.0 is tagged. pub const GeneralPurposeAllocator = DebugAllocator; const memory_pool = @import("heap/memory_pool.zig");