aboutsummaryrefslogtreecommitdiff
path: root/src/macros/scoped_tls.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/macros/scoped_tls.rs')
-rw-r--r--src/macros/scoped_tls.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/macros/scoped_tls.rs b/src/macros/scoped_tls.rs
index 886f9d4..a00aae2 100644
--- a/src/macros/scoped_tls.rs
+++ b/src/macros/scoped_tls.rs
@@ -23,9 +23,7 @@ macro_rules! scoped_thread_local {
/// Type representing a thread local storage key corresponding to a reference
/// to the type parameter `T`.
pub(crate) struct ScopedKey<T> {
- #[doc(hidden)]
pub(crate) inner: &'static LocalKey<Cell<*const ()>>,
- #[doc(hidden)]
pub(crate) _marker: marker::PhantomData<T>,
}