Skip to content

Commit 36cd235

Browse files
committed
Make PROCESS private
1 parent f45af7b commit 36cd235

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
@@ -201,7 +201,7 @@ fn clear_process() {
201201
}
202202

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

207207
// ----------- real process -----------------

0 commit comments

Comments
 (0)