eliminate an unwrap in gdt for x86_shared

This commit is contained in:
auronandace
2026-03-02 10:56:28 +00:00
parent 4faa1bad45
commit f7b0f5ec37
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -127,7 +127,7 @@ impl WaitCondition {
waited
}
pub fn into_drop(mut self, token: &mut CleanLockToken) {
pub fn into_drop(self, token: &mut CleanLockToken) {
ManuallyDrop::new(self).inner_drop(token);
}