Skip to content

Commit 02e84f2

Browse files
committed
Keep -strict-style happy
1 parent 2942892 commit 02e84f2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

core/container/handle_map/handle_map.odin

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,7 @@ Handle_Map :: struct($N: uint, $T: typeid, $Handle_Type: typeid)
6565
N < uint(max(intrinsics.type_field_type(Handle_Type, "idx"))),
6666

6767
intrinsics.type_has_field (T, "handle"),
68-
intrinsics.type_field_type(T, "handle") == Handle_Type
69-
{
68+
intrinsics.type_field_type(T, "handle") == Handle_Type {
7069

7170
// The zero element represent a zero-value sentinel (dummy value), allowing for `idx == 0` to mean a no-handle.
7271
// This means the capacity is actually N-1 items.

0 commit comments

Comments
 (0)