Browse Source

Fix alignment.

Jeroen van Rijn 1 year ago
parent
commit
a0a48bfe34
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/container/rbtree/rbtree.odin

+ 1 - 1
core/container/rbtree/rbtree.odin

@@ -29,7 +29,7 @@ Tree :: struct($Key: typeid, $Value: typeid) {
 
 
 	_root:           ^Node(Key, Value),
 	_root:           ^Node(Key, Value),
 	_node_allocator: runtime.Allocator,
 	_node_allocator: runtime.Allocator,
-	_cmp_fn:          proc(Key, Key) -> Ordering,
+	_cmp_fn:         proc(Key, Key) -> Ordering,
 	_size:           int,
 	_size:           int,
 }
 }