From 50e2f51ab32f86716e92d0d67c42d7a47ee36308 Mon Sep 17 00:00:00 2001 From: 4lDO2 <4lDO2@protonmail.com> Date: Tue, 27 Jun 2023 15:27:27 +0200 Subject: [PATCH] Remove outdated #[must_use]. --- src/context/context.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/context/context.rs b/src/context/context.rs index a3ee5d8c..aed8a03a 100644 --- a/src/context/context.rs +++ b/src/context/context.rs @@ -413,7 +413,6 @@ impl Context { pub fn addr_space(&self) -> Result<&Arc<RwLock<AddrSpace>>> { self.addr_space.as_ref().ok_or(Error::new(ESRCH)) } - #[must_use = "grants must be manually unmapped, otherwise it WILL panic!"] pub fn set_addr_space(&mut self, addr_space: Arc<RwLock<AddrSpace>>) -> Option<Arc<RwLock<AddrSpace>>> { if self.id == super::context_id() { unsafe { addr_space.read().table.utable.make_current(); } -- GitLab