File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed
context/tpm_commands/object_commands Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,8 @@ impl TryFrom<CreateCommandOutputHandler> for CreateKeyResult {
8282
8383 let creation_ticket_owned =
8484 unsafe { take_from_esys ( ffi_data_handler. ffi_creation_ticket_ptr ) ? } ;
85- ffi_data_handler. ffi_creation_ticket_ptr = null_mut ( ) ;
85+ //#[allow(unused_assignments)]
86+ //ffi_data_handler.ffi_creation_ticket_ptr = null_mut();
8687
8788 Ok ( CreateKeyResult {
8889 out_private : Private :: try_from ( out_private_owned) ?,
Original file line number Diff line number Diff line change 2929 missing_copy_implementations,
3030 rustdoc:: broken_intra_doc_links,
3131) ]
32+ #![ feature( stmt_expr_attributes) ]
3233
3334//! # TSS 2.0 Rust Wrapper over Enhanced System API
3435//! This crate exposes the functionality of the TCG Software Stack Enhanced System API to
Original file line number Diff line number Diff line change @@ -179,6 +179,7 @@ macro_rules! impl_mu_complex {
179179
180180// Make the macros usable outside of the module.
181181pub ( crate ) use impl_marshall_trait;
182+ #[ allow( unused_imports) ]
182183pub ( crate ) use impl_mu_aliases;
183184pub ( crate ) use impl_mu_complex;
184185pub ( crate ) use impl_mu_simple;
You can’t perform that action at this time.
0 commit comments