-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Closed
Labels
bugObserved behavior contradicts documented or intended behaviorObserved behavior contradicts documented or intended behaviorcontributor friendlyThis issue is limited in scope and/or knowledge of Zig internals.This issue is limited in scope and/or knowledge of Zig internals.os-plan9os-uefiregressionIt worked in a previous version of Zig, but stopped working.It worked in a previous version of Zig, but stopped working.standard libraryThis issue involves writing Zig code for the standard library.This issue involves writing Zig code for the standard library.
Milestone
Description
Zig Version
master
Steps to Reproduce and Observed Behavior
#20511 didn't update:
zig/lib/std/os/uefi/pool_allocator.zig
Lines 76 to 80 in 6a6e72f
const pool_allocator_vtable = Allocator.VTable{ .alloc = UefiPoolAllocator.alloc, .resize = UefiPoolAllocator.resize, .free = UefiPoolAllocator.free, }; zig/lib/std/os/uefi/pool_allocator.zig
Lines 88 to 92 in 6a6e72f
const raw_pool_allocator_table = Allocator.VTable{ .alloc = uefi_alloc, .resize = uefi_resize, .free = uefi_free, }; zig/lib/std/heap/sbrk_allocator.zig
Lines 11 to 15 in 6a6e72f
pub const vtable: Allocator.VTable = .{ .alloc = alloc, .resize = resize, .free = free, };
Expected Behavior
std should build.
Metadata
Metadata
Assignees
Labels
bugObserved behavior contradicts documented or intended behaviorObserved behavior contradicts documented or intended behaviorcontributor friendlyThis issue is limited in scope and/or knowledge of Zig internals.This issue is limited in scope and/or knowledge of Zig internals.os-plan9os-uefiregressionIt worked in a previous version of Zig, but stopped working.It worked in a previous version of Zig, but stopped working.standard libraryThis issue involves writing Zig code for the standard library.This issue involves writing Zig code for the standard library.