Skip to content

Commit d5f0aa4

Browse files
committed
Fix safety of windows uwp functions
These functions were changed to be safe in rust-lang#127763, but this particular UWP version was missed. Otherwise this causes unnecessary unsafe block warnings/errors.
1 parent 0484d23 commit d5f0aa4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#![cfg_attr(test, allow(dead_code))]
22

3-
pub unsafe fn reserve_stack() {}
4-
pub unsafe fn init() {}
3+
pub fn reserve_stack() {}
4+
pub fn init() {}

0 commit comments

Comments
 (0)