Files
rust/compiler
Zalathar 44f5ec7d56 Avoid an explicit cast from *const c_uchar to *const c_char
As noted in the `ffi` module docs, passing pointer/length byte strings from
Rust to C++ is easier if we declare them as `*const c_uchar` on the Rust side,
but `const char *` (possibly signed) on the C++ side. This is allowed because
both pointer types are ABI-compatible, regardless of char signedness.
2025-08-15 20:24:13 +10:00
..
2025-07-29 14:17:48 +00:00
2025-08-11 17:05:36 -05:00
2025-07-31 19:58:04 +10:00
2025-07-31 19:58:04 +10:00
2025-08-11 09:18:46 +02:00
2025-07-31 19:58:04 +10:00