File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,10 @@ const windows = std.os.windows;
10
10
const Alignment = std .mem .Alignment ;
11
11
12
12
pub const ArenaAllocator = @import ("heap/arena_allocator.zig" ).ArenaAllocator ;
13
+ pub const BumpAllocator = @import ("heap/BumpAllocator.zig" );
13
14
pub const SmpAllocator = @import ("heap/SmpAllocator.zig" );
14
- pub const FixedBufferAllocator = @import ("heap/FixedBufferAllocator.zig" );
15
+ /// Deprecated; to be removed after 0.16.0 is tagged.
16
+ pub const FixedBufferAllocator = BumpAllocator ;
15
17
pub const PageAllocator = @import ("heap/PageAllocator.zig" );
16
18
pub const SbrkAllocator = @import ("heap/sbrk_allocator.zig" ).SbrkAllocator ;
17
19
pub const ThreadSafeAllocator = @import ("heap/ThreadSafeAllocator.zig" );
@@ -989,8 +991,8 @@ const page_size_max_default: ?usize = switch (builtin.os.tag) {
989
991
test {
990
992
_ = @import ("heap/memory_pool.zig" );
991
993
_ = ArenaAllocator ;
994
+ _ = BumpAllocator ;
992
995
_ = GeneralPurposeAllocator ;
993
- _ = FixedBufferAllocator ;
994
996
_ = ThreadSafeAllocator ;
995
997
_ = SbrkAllocator ;
996
998
if (builtin .target .cpu .arch .isWasm ()) {
File renamed without changes.
You can’t perform that action at this time.
0 commit comments