]> git.proxmox.com Git - rustc.git/blobdiff - library/std/src/sys/windows/mutex.rs
Merge tag 'debian/1.52.1+dfsg1-1_exp2' into proxmox/buster
[rustc.git] / library / std / src / sys / windows / mutex.rs
index 72a0993d94ddf12960648e149e92a33dc0fcde3b..12c5ea741f9ef5f7cd3b474b9529c4e0e63e91e6 100644 (file)
@@ -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 {}