diff options
| author | Mara Bos <m-ou.se@m-ou.se> | 2021-02-08 22:27:34 +0100 |
|---|---|---|
| committer | Mara Bos <m-ou.se@m-ou.se> | 2021-02-08 22:27:34 +0100 |
| commit | 15de287cd56815f04e27a1fc1721e8de1ababd66 (patch) | |
| tree | aabc1ef73d3ede4546073cd13c3ce9c3d513cdbb | |
| parent | 921ec4b3fca17cc777766c240038d7d50ba98e0d (diff) | |
| download | rust-15de287cd56815f04e27a1fc1721e8de1ababd66.tar.gz rust-15de287cd56815f04e27a1fc1721e8de1ababd66.zip | |
Remove outdated comment.
| -rw-r--r-- | library/std/src/sys/windows/mutex.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/library/std/src/sys/windows/mutex.rs b/library/std/src/sys/windows/mutex.rs index 72a0993d94d..12c5ea741f9 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 {} |
