1
Fork 0

Fix safety of windows uwp functions

These functions were changed to be safe in
https://github.com/rust-lang/rust/pull/127763, but this particular UWP
version was missed. Otherwise this causes unnecessary unsafe block
warnings/errors.
This commit is contained in:
Eric Huss 2025-02-12 14:15:19 -08:00
parent 0484d23465
commit d5f0aa49e7

View file

@ -1,4 +1,4 @@
#![cfg_attr(test, allow(dead_code))]
pub unsafe fn reserve_stack() {}
pub unsafe fn init() {}
pub fn reserve_stack() {}
pub fn init() {}