]> git.proxmox.com Git - rustc.git/blobdiff - vendor/parking_lot/src/mutex.rs
New upstream version 1.63.0+dfsg1
[rustc.git] / vendor / parking_lot / src / mutex.rs
index 71bc3519e0ce376b9d498f89ea50f826c4003469..f3f8aa9282dfd33fbf8c109dad77822679f48c81 100644 (file)
@@ -42,7 +42,7 @@ use lock_api;
 /// - No poisoning, the lock is released normally on panic.
 /// - Only requires 1 byte of space, whereas the standard library boxes the
 ///   `Mutex` due to platform limitations.
-/// - Can be statically constructed (requires the `const_fn` nightly feature).
+/// - Can be statically constructed.
 /// - Does not require any drop glue when dropped.
 /// - Inline fast path for the uncontended case.
 /// - Efficient handling of micro-contention using adaptive spinning.