From 15de287cd56815f04e27a1fc1721e8de1ababd66 Mon Sep 17 00:00:00 2001 From: Mara Bos Date: Mon, 8 Feb 2021 22:27:34 +0100 Subject: [PATCH] Remove outdated comment. --- library/std/src/sys/windows/mutex.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/library/std/src/sys/windows/mutex.rs b/library/std/src/sys/windows/mutex.rs index 72a0993d94ddf..12c5ea741f9ef 100644 --- a/library/std/src/sys/windows/mutex.rs +++ b/library/std/src/sys/windows/mutex.rs @@ -23,8 +23,6 @@ pub struct Mutex { } // Windows SRW Locks are movable (while not borrowed). -// ReentrantMutexes (in Inner) are not, but those are stored indirectly through -// a Box, so do not move when the Mutex it self is moved. pub type MovableMutex = Mutex; unsafe impl Send for Mutex {}