summaryrefslogtreecommitdiff
path: root/ext/timers/lib.rs
diff options
context:
space:
mode:
authorLeo K <crowlkats@toaxl.com>2021-10-05 22:38:27 +0200
committerGitHub <noreply@github.com>2021-10-05 22:38:27 +0200
commit77a00ce1fb4ae2523e22b9b84ae09a0200502e38 (patch)
tree0027a2ff3dbff1e2b0c3afa7ce0f0e54805c7d62 /ext/timers/lib.rs
parentd67e85850688117e116bbf7054e80f30fe07afe6 (diff)
chore: various op cleanup (#12329)
Diffstat (limited to 'ext/timers/lib.rs')
-rw-r--r--ext/timers/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/timers/lib.rs b/ext/timers/lib.rs
index 384627c57..d95ac71e8 100644
--- a/ext/timers/lib.rs
+++ b/ext/timers/lib.rs
@@ -93,7 +93,7 @@ impl GlobalTimer {
pub fn op_global_timer_stop(
state: &mut OpState,
- _args: (),
+ _: (),
_: (),
) -> Result<(), AnyError> {
let global_timer = state.borrow_mut::<GlobalTimer>();
@@ -127,7 +127,7 @@ pub fn op_global_timer_start(
pub async fn op_global_timer(
state: Rc<RefCell<OpState>>,
- _args: (),
+ _: (),
_: (),
) -> Result<(), AnyError> {
let maybe_timer_fut = {