diff --git a/core/container/rbtree/rbtree.odin b/core/container/rbtree/rbtree.odin index 57a68a948..090551367 100644 --- a/core/container/rbtree/rbtree.odin +++ b/core/container/rbtree/rbtree.odin @@ -29,7 +29,7 @@ Tree :: struct($Key: typeid, $Value: typeid) { _root: ^Node(Key, Value), _node_allocator: runtime.Allocator, - _cmp_fn: proc(Key, Key) -> Ordering, + _cmp_fn: proc(Key, Key) -> Ordering, _size: int, }