diff options
author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2021-05-06 19:32:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-06 19:32:03 +0200 |
commit | 1e8e44f4c31688ac55100f96bdab27723eb6e575 (patch) | |
tree | 820c3b61ded766ecb912eefddaae4894e399555c /cli/lsp/tsc.rs | |
parent | f208e6a26f3c21c25dbfcfe29491a6f5660c999d (diff) |
refactor(ops): replace `ZeroCopyBuf` arg by 2nd generic deserializable arg (#10448)
Diffstat (limited to 'cli/lsp/tsc.rs')
-rw-r--r-- | cli/lsp/tsc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/lsp/tsc.rs b/cli/lsp/tsc.rs index a7f80e3f9..869a61838 100644 --- a/cli/lsp/tsc.rs +++ b/cli/lsp/tsc.rs @@ -1826,7 +1826,7 @@ where V: de::DeserializeOwned, R: Serialize + 'static, { - op_sync(move |s, args, _bufs| { + op_sync(move |s, args, _: ()| { let state = s.borrow_mut::<State>(); op_fn(state, args) }) |