Rollup merge of #81896 - m-ou-se:oudated-comment, r=Mark-Simulacrum

Remove outdated comment in windows' mutex.rs

After https://github.com/rust-lang/rust/pull/81250, this `Mutex` no longer falls back to the `ReentrantMutex` implementation, so this comment is no longer relevant.
This commit is contained in:
Dylan DPC 2021-02-09 02:40:06 +01:00 committed by GitHub
commit d2e204d158
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

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