1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

ci: fix all -cstrict warnings with gcc and clang (#9792)

This commit is contained in:
spaceface
2021-04-19 14:38:48 +02:00
committed by GitHub
parent dde3189e66
commit 73352583e7
37 changed files with 295 additions and 296 deletions

View File

@@ -150,7 +150,7 @@ fn propagate_cancel(parent Context, mut child Canceler) {
// parent has already been canceled
child.cancel(false, p.err)
} else {
p.children[child.id] = child
p.children[child.id] = *child
}
}