Remove outdated comment.

This commit is contained in:
Mara Bos 2021-02-08 22:27:34 +01:00
parent 921ec4b3fc
commit 15de287cd5

View 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 {}