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:
Shawn Landden 2018-08-07 16:15:11 -07:00 committed by Andrew Kelley
parent 034363a86c
commit a583beb76c

View File

@ -135,7 +135,7 @@ pub const Allocator = struct {
}
};
const Compare = enum {
pub const Compare = enum {
LessThan,
Equal,
GreaterThan,