]> git.lizzy.rs Git - rust.git/blobdiff - library/std/src/sys/unix/thread_local_key.rs
Rollup merge of #102977 - lukas-code:is-sorted-hrtb, r=m-ou-se
[rust.git] / library / std / src / sys / unix / thread_local_key.rs
index 2c5b94b1e61e5710717363d92396c6b5e1027305..2b2d079ee4d012730b8324561c78beab7191fda7 100644 (file)
@@ -27,8 +27,3 @@ pub unsafe fn destroy(key: Key) {
     let r = libc::pthread_key_delete(key);
     debug_assert_eq!(r, 0);
 }
-
-#[inline]
-pub fn requires_synchronized_create() -> bool {
-    false
-}