mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 03:24:46 +01:00
Revert "Allow overriding std.Io at a namespace level."
This reverts commit e314dadb01.
This idea requires more consideration before committing to it.
At the very least let's not regress autodocs.
Closes #31230
This commit is contained in:
parent
1838134200
commit
27eec9bd62
1 changed files with 1 additions and 1 deletions
|
|
@ -20,7 +20,7 @@ pub const EnumMap = enums.EnumMap;
|
|||
pub const EnumSet = enums.EnumSet;
|
||||
pub const HashMap = hash_map.HashMap;
|
||||
pub const HashMapUnmanaged = hash_map.HashMapUnmanaged;
|
||||
pub const Io = if (@hasDecl(root, "std_options_Io")) root.std_options_Io else @import("Io.zig");
|
||||
pub const Io = @import("Io.zig");
|
||||
pub const MultiArrayList = @import("multi_array_list.zig").MultiArrayList;
|
||||
pub const PriorityQueue = @import("priority_queue.zig").PriorityQueue;
|
||||
pub const PriorityDequeue = @import("priority_dequeue.zig").PriorityDequeue;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue