diff options
| author | iamcheeseman <[hidden email]> | 2026-01-13 00:01:44 -0500 |
|---|---|---|
| committer | iamcheeseman <[hidden email]> | 2026-01-13 00:01:44 -0500 |
| commit | afb58a61abd0e8114a090ab0ad664d59c10dd4b1 (patch) | |
| tree | 241788a343d7a206f1bb9394519d6f562eda8c21 /src/entity_list.odin | |
| parent | 58de3f9ddc72c5dbf433e45babb43a06c819cb4f (diff) | |
formatter
Diffstat (limited to 'src/entity_list.odin')
| -rw-r--r-- | src/entity_list.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entity_list.odin b/src/entity_list.odin index 1f07ef9..633a553 100644 --- a/src/entity_list.odin +++ b/src/entity_list.odin @@ -65,7 +65,7 @@ Entity_List_Iter :: struct($T: typeid) { } iter_entity_list :: proc(list: Entity_List($T)) -> Entity_List_Iter(T) { - return Entity_List_Iter(T) { list = list } + return Entity_List_Iter(T){list = list} } entity_list_iter :: proc(it: ^Entity_List_Iter($T)) -> (^T, bool) { |
