summaryrefslogtreecommitdiffstats
path: root/third_party/rust/neqo-common/src/hrtime.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/neqo-common/src/hrtime.rs')
-rw-r--r--third_party/rust/neqo-common/src/hrtime.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/third_party/rust/neqo-common/src/hrtime.rs b/third_party/rust/neqo-common/src/hrtime.rs
index 62d2567d42..e70b5f0ffb 100644
--- a/third_party/rust/neqo-common/src/hrtime.rs
+++ b/third_party/rust/neqo-common/src/hrtime.rs
@@ -6,7 +6,6 @@
use std::{
cell::RefCell,
- convert::TryFrom,
rc::{Rc, Weak},
time::Duration,
};
@@ -340,9 +339,7 @@ impl Time {
/// The handle can also be used to update the resolution.
#[must_use]
pub fn get(period: Duration) -> Handle {
- thread_local! {
- static HR_TIME: RefCell<Weak<RefCell<Time>>> = RefCell::default();
- }
+ thread_local!(static HR_TIME: RefCell<Weak<RefCell<Time>>> = RefCell::default());
HR_TIME.with(|r| {
let mut b = r.borrow_mut();