Skip to content

Commit 72c67be

Browse files
Re-export Client from rustc_data_structures::jobserver
1 parent 285144a commit 72c67be

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/librustc/session/mod.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,8 @@ use syntax_pos::{MultiSpan, Span};
2828

2929
use rustc_target::spec::{PanicStrategy, RelroLevel, Target, TargetTriple};
3030
use rustc_data_structures::flock;
31-
use rustc_data_structures::jobserver;
31+
use rustc_data_structures::jobserver::{self, Client};
3232
use rustc_data_structures::profiling::{SelfProfiler, SelfProfilerRef};
33-
use ::jobserver::Client;
3433

3534
use std;
3635
use std::cell::{self, RefCell};

src/librustc_data_structures/jobserver.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use jobserver_crate::Client;
1+
pub use jobserver_crate::Client;
22
use lazy_static::lazy_static;
33

44
lazy_static! {

0 commit comments

Comments
 (0)