We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 73feae1 + 069a203 commit c750c50Copy full SHA for c750c50
src/librustrt/libunwind.rs
@@ -21,6 +21,7 @@ pub use self::_Unwind_Action::*;
21
pub use self::_Unwind_State::*;
22
pub use self::_Unwind_Reason_Code::*;
23
24
+use core::kinds::Copy;
25
use libc;
26
27
#[cfg(any(not(target_arch = "arm"), target_os = "ios"))]
@@ -33,6 +34,9 @@ pub enum _Unwind_Action {
33
34
_UA_END_OF_STACK = 16,
35
}
36
37
+#[cfg(any(not(target_arch = "arm"), target_os = "ios"))]
38
+impl Copy for _Unwind_Action {}
39
+
40
#[cfg(target_arch = "arm")]
41
#[repr(C)]
42
pub enum _Unwind_State {
0 commit comments