You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix a warning in codegen when building with Clang (#26318)
The `cursor` variable is an `int` but is compared against the result of
`jl_array_len`, which is a `size_t`. This causes Clang to emit a
warning. To fix it we can simply cast `cursor` to a `size_t`.
0 commit comments