diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2021-09-07 10:39:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-07 10:39:32 -0400 |
commit | 2c2e3ec1ca47803f791ea72ea6247d8eedf87ec8 (patch) | |
tree | 9ba3ddfde58f4a4feaf98fc230ec18861891c9be /runtime/ops/signal.rs | |
parent | a5bcf7033e66a828dc88a313f4cca11f116c3f83 (diff) |
refactor(lsp): use deno_ast and cache swc ASTs (#11780)
Diffstat (limited to 'runtime/ops/signal.rs')
-rw-r--r-- | runtime/ops/signal.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/ops/signal.rs b/runtime/ops/signal.rs index eea8161cd..40309657d 100644 --- a/runtime/ops/signal.rs +++ b/runtime/ops/signal.rs @@ -131,7 +131,7 @@ fn signal_str_to_int(s: &str) -> Option<libc::c_int> { } #[cfg(target_os = "windows")] -fn signal_str_to_int(s: &str) -> Option<libc::c_int> { +fn signal_str_to_int(_s: &str) -> Option<libc::c_int> { unimplemented!() } |