mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-28 18:30:06 +00:00
Replace x in &y Use &v in y syntax through core & vendor for switch/for statements
This commit is contained in:
@@ -81,7 +81,7 @@ pool_destroy :: proc(pool: ^Pool) {
|
||||
delete(pool.tasks)
|
||||
delete(pool.tasks_done)
|
||||
|
||||
for t in &pool.threads {
|
||||
for &t in pool.threads {
|
||||
destroy(t)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user