aboutsummaryrefslogtreecommitdiff
path: root/src/macros/thread_local.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/macros/thread_local.rs')
-rw-r--r--src/macros/thread_local.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/macros/thread_local.rs b/src/macros/thread_local.rs
index 74be99a..6d4a6aa 100644
--- a/src/macros/thread_local.rs
+++ b/src/macros/thread_local.rs
@@ -10,23 +10,9 @@ macro_rules! tokio_thread_local {
($($tts:tt)+) => { loom::thread_local!{ $($tts)+ } }
}
-#[cfg(not(tokio_no_const_thread_local))]
#[cfg(not(all(loom, test)))]
macro_rules! tokio_thread_local {
($($tts:tt)+) => {
::std::thread_local!{ $($tts)+ }
}
}
-
-#[cfg(tokio_no_const_thread_local)]
-#[cfg(not(all(loom, test)))]
-macro_rules! tokio_thread_local {
- ($(#[$attrs:meta])* $vis:vis static $name:ident: $ty:ty = const { $expr:expr } $(;)?) => {
- ::std::thread_local! {
- $(#[$attrs])*
- $vis static $name: $ty = $expr;
- }
- };
-
- ($($tts:tt)+) => { ::std::thread_local!{ $($tts)+ } }
-}