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
The C/C++ API documents line numbers as 1-based, with 0 reserved as an error sentinel.
However, the Rust binding currently models lines as plain u32 in public data structures, so the non-zero invariant is not fully encoded in types.
The C/C++ API documents line numbers as 1-based, with
0reserved as an error sentinel.However, the Rust binding currently models lines as plain
u32in public data structures, so the non-zero invariant is not fully encoded in types.