mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-19 16:11:30 +00:00
Disallow for in in favour of for _ in
This commit is contained in:
@@ -1155,7 +1155,7 @@ threading_example :: proc() {
|
||||
threads := make([dynamic]^thread.Thread, 0, len(prefix_table))
|
||||
defer delete(threads)
|
||||
|
||||
for in prefix_table {
|
||||
for _ in prefix_table {
|
||||
if t := thread.create(worker_proc); t != nil {
|
||||
t.init_context = context
|
||||
t.user_index = len(threads)
|
||||
|
||||
Reference in New Issue
Block a user