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:
parent
0484d23465
commit
d5f0aa49e7
1 changed files with 2 additions and 2 deletions
|
@ -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() {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue