Skip to content

Commit 2088de2

Browse files
committed
Remove extern crate scoped_tls from stable_mir.
1 parent 6341935 commit 2088de2

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

compiler/stable_mir/src/compiler_interface.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ pub trait Context {
221221

222222
// A thread local variable that stores a pointer to the tables mapping between TyCtxt
223223
// datastructures and stable MIR datastructures
224-
scoped_thread_local!(static TLV: Cell<*const ()>);
224+
scoped_tls::scoped_thread_local!(static TLV: Cell<*const ()>);
225225

226226
pub fn run<F, T>(context: &dyn Context, f: F) -> Result<T, Error>
227227
where

compiler/stable_mir/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
//!
1717
//! The goal is to eventually be published on
1818
//! [crates.io](https://crates.io).
19-
#[macro_use]
20-
extern crate scoped_tls;
2119
2220
use std::fmt;
2321
use std::fmt::Debug;

0 commit comments

Comments
 (0)