From 4908696c88b43d7644faeeefac07d98396871623 Mon Sep 17 00:00:00 2001 From: Mohsen Zohrevandi Date: Thu, 5 Nov 2020 10:44:23 -0800 Subject: [PATCH] Remove reserved field in Cancel --- fortanix-sgx-abi/src/lib.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/fortanix-sgx-abi/src/lib.rs b/fortanix-sgx-abi/src/lib.rs index 62b4b665..aeda9f23 100644 --- a/fortanix-sgx-abi/src/lib.rs +++ b/fortanix-sgx-abi/src/lib.rs @@ -724,10 +724,7 @@ pub mod async { #[repr(C)] #[derive(Copy, Clone, Default)] #[cfg_attr(feature = "rustc-dep-of-std", unstable(feature = "sgx_platform", issue = "56975"))] - pub struct Cancel { - /// Reserved for future use. - pub reserved: u64, - } + pub struct Cancel; /// A circular buffer used as a FIFO queue with atomic reads and writes. ///