diff --git a/core/reflect/iterator.odin b/core/reflect/iterator.odin index 62baff06e..9fb6489ca 100644 --- a/core/reflect/iterator.odin +++ b/core/reflect/iterator.odin @@ -67,7 +67,7 @@ iterate_map :: proc(val: any, it: ^int) -> (key, value: any, ok: bool) { key.id = info.key.id value.id = info.value.id ok = true - return + break } }