mirror of
https://github.com/ziglang/zig.git
synced 2026-02-12 20:37:54 +00:00
mem: use pub on Compare (#1352)
fixes rb
/home/shawn/git/zig/std/rb.zig:133:37: error: 'Compare' is private
compare_fn: fn(*Node, *Node) mem.Compare,
This commit is contained in:
parent
034363a86c
commit
a583beb76c
@ -135,7 +135,7 @@ pub const Allocator = struct {
|
||||
}
|
||||
};
|
||||
|
||||
const Compare = enum {
|
||||
pub const Compare = enum {
|
||||
LessThan,
|
||||
Equal,
|
||||
GreaterThan,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user