diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2024-06-27 21:56:26 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2024-06-27 21:56:26 +0200 |
| commit | a0a48bfe3440a844b3ce2c9e14369e99f50faeae (patch) | |
| tree | 2fe6ed427702f17eeab8a7148ce3934c305788e2 /core/container | |
| parent | 9f8b84c2129fb43cd9ede3085e154396593c4ff5 (diff) | |
Fix alignment.
Diffstat (limited to 'core/container')
| -rw-r--r-- | core/container/rbtree/rbtree.odin | 2 |
1 files changed, 1 insertions, 1 deletions
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, } |