Skip to content

Commit 9d3efcd

Browse files
committed
Make PROCESS private
1 parent f47da1d commit 9d3efcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/process/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ fn clear_process() {
203203
}
204204

205205
thread_local! {
206-
pub(crate) static PROCESS: RefCell<Option<Process>> = const { RefCell::new(None) };
206+
static PROCESS: RefCell<Option<Process>> = const { RefCell::new(None) };
207207
}
208208

209209
// ----------- real process -----------------

0 commit comments

Comments
 (0)