mirror of
https://github.com/denoland/deno.git
synced 2024-12-24 08:09:08 -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;
|
pub type FormatJsErrorFn = dyn Fn(&JsError) -> String + Sync + Send;
|
||||||
|
|
||||||
#[derive(Clone)]
|
#[derive(Clone, Default)]
|
||||||
pub struct ExitCode(Arc<AtomicI32>);
|
pub struct ExitCode(Arc<AtomicI32>);
|
||||||
|
|
||||||
impl ExitCode {
|
impl ExitCode {
|
||||||
|
|
Loading…
Reference in a new issue