Closed daxpedda closed 1 week ago
This adds unsafe to all extern "C" { ... } generated blocks to account for edition 2024 requirements.
unsafe
extern "C" { ... }
See https://github.com/rust-lang/rust/issues/132425 for more information why this is a problem considering macro edition hygiene should account for this in the first place.
Fixes #4218.
This adds
unsafe
to allextern "C" { ... }
generated blocks to account for edition 2024 requirements.See https://github.com/rust-lang/rust/issues/132425 for more information why this is a problem considering macro edition hygiene should account for this in the first place.
Fixes #4218.