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
This is pretty hard to parse even once you get used to it: b"contents\x00" as *const u8 as *const c_char. One way to reduce the noise while remaining correct would be to rely on a crate that lets you declare a C string literal like cstr-macro.
The text was updated successfully, but these errors were encountered:
Going through and triaging old issues. This has been largely taken care of by refactoring passes that clean up the resulting rust code. I'll dig up some details and examples.
This is pretty hard to parse even once you get used to it:
b"contents\x00" as *const u8 as *const c_char
. One way to reduce the noise while remaining correct would be to rely on a crate that lets you declare a C string literal likecstr-macro
.The text was updated successfully, but these errors were encountered: