You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 9, 2022. It is now read-only.
#![deny(unsafe_op_in_unsafe_fn)] -> Sets the lint enabled by the above feature to error if the conditions are not met
#![deny(clippy::mem_forget)] -> Disallows (via clippy) the use of mem_forget. (This should not come up at all, but it is good to prevent obvious memory leaks)
The text was updated successfully, but these errors were encountered:
Enclave.edl
Enclave.lds
Enclave_private.pem
Enclave.config.xml
rust-toolchain
x86_64-unknown-linux-sgx.json
rtc_data_enclave/build.rs
)rtc_data_enclave
#![no_std]
-> Sets no_std (so rust does not add std prelude to the top of every file)#![feature(unsafe_block_in_unsafe_fn)]
-> Require unsafe blocks for unsafe code, even if the function is marked as unsafe#![deny(unsafe_op_in_unsafe_fn)]
-> Sets the lint enabled by the above feature to error if the conditions are not met#![deny(clippy::mem_forget)]
-> Disallows (via clippy) the use of mem_forget. (This should not come up at all, but it is good to prevent obvious memory leaks)The text was updated successfully, but these errors were encountered: