| author | |
| committer | |
| log | a583beb76c4c52db6e91b3543c562a437d2a488e |
| tree | 245bf6daf45295ec688a2222712dd13fe771f295 |
| parent | 034363a86c683de479429c8b275e6279a77eb8c1 |
fixes rb
/home/shawn/git/zig/std/rb.zig:133:37: error: 'Compare' is private
compare_fn: fn(*Node, *Node) mem.Compare,1 files changed, 1 insertions(+), 1 deletions(-)
std/mem.zig+1-1| ... | @@ -135,7 +135,7 @@ pub const Allocator = struct { | ... | @@ -135,7 +135,7 @@ pub const Allocator = struct { |
| 135 | } | 135 | } |
| 136 | }; | 136 | }; |
| 137 | 137 | ||
| 138 | const Compare = enum { | 138 | pub const Compare = enum { |
| 139 | LessThan, | 139 | LessThan, |
| 140 | Equal, | 140 | Equal, |
| 141 | GreaterThan, | 141 | GreaterThan, |