authorgravatar for techatrix@mailbox.orgTechatrix <techatrix@mailbox.org> 2024-03-05 14:37:49+01:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-03-10 14:08:02-07:00
log40e64245fc5555f29bbb5bb37e3b78d64f9b3c9b
tree38b8d3254d7c5ecf53c238828d1a6c25cc13dfe5
parentc1bda06c14250f6751b834331a0f9c40f409c7d1

std: expose Config struct of GeneralPurposeAllocator


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

lib/std/heap.zig+1
......@@ -14,6 +14,7 @@ pub const ScopedLoggingAllocator = @import("heap/logging_allocator.zig").ScopedL
1414pub const LogToWriterAllocator = @import("heap/log_to_writer_allocator.zig").LogToWriterAllocator;
1515pub const logToWriterAllocator = @import("heap/log_to_writer_allocator.zig").logToWriterAllocator;
1616pub const ArenaAllocator = @import("heap/arena_allocator.zig").ArenaAllocator;
17pub const GeneralPurposeAllocatorConfig = @import("heap/general_purpose_allocator.zig").Config;
1718pub const GeneralPurposeAllocator = @import("heap/general_purpose_allocator.zig").GeneralPurposeAllocator;
1819pub const Check = @import("heap/general_purpose_allocator.zig").Check;
1920pub const WasmAllocator = @import("heap/WasmAllocator.zig");