We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
extra capture in for loop
From zig version, 0.11, capturing implicit array index is compile error.
This error is reported at https://github.com/dmgk/zig-uuid/blob/master/uuid.zig#L82 and https://github.com/dmgk/zig-uuid/blob/master/uuid.zig#L96 .
It could be resolved this error changing explicitly index.
// #L82 inline for (encoded_pos, 0..) |i, j| { // (snip) } // #L96 ditto
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
From zig version, 0.11, capturing implicit array index is compile error.
This error is reported at https://github.com/dmgk/zig-uuid/blob/master/uuid.zig#L82 and https://github.com/dmgk/zig-uuid/blob/master/uuid.zig#L96 .
It could be resolved this error changing explicitly index.
Environment
The text was updated successfully, but these errors were encountered: