about summary refs log tree commit diff
path: root/src/liballoc/task.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/liballoc/task.rs')
-rw-r--r--src/liballoc/task.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/task.rs b/src/liballoc/task.rs
index 3fb148e8e34..8da2989784d 100644
--- a/src/liballoc/task.rs
+++ b/src/liballoc/task.rs
@@ -83,5 +83,5 @@ fn raw_waker<W: Wake + Send + Sync + 'static>(waker: Arc<W>) -> RawWaker {
     RawWaker::new(
         Arc::into_raw(waker) as *const (),
         &RawWakerVTable::new(clone_waker::<W>, wake::<W>, wake_by_ref::<W>, drop_waker::<W>),
-    ))
+    )
 }