mirror of
https://github.com/denoland/deno.git
synced 2024-12-23 23:59:59 -05:00
fix(runtime): derive default for deno_runtime::ExitCode (#15017)
This commit is contained in:
parent
8c4420c005
commit
d5ef14eca6
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ use std::task::Poll;
|
|||
|
||||
pub type FormatJsErrorFn = dyn Fn(&JsError) -> String + Sync + Send;
|
||||
|
||||
#[derive(Clone)]
|
||||
#[derive(Clone, Default)]
|
||||
pub struct ExitCode(Arc<AtomicI32>);
|
||||
|
||||
impl ExitCode {
|
||||
|
|
Loading…
Reference in a new issue