File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ unsafe fn wake_panic(_data: *const()) {
15
15
16
16
const PANIC_WAKER_VTABLE : RawWakerVTable = RawWakerVTable {
17
17
clone : noop_clone,
18
- drop_fn : noop,
18
+ drop : noop,
19
19
wake : wake_panic,
20
20
} ;
21
21
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ macro_rules! waker_vtable {
5
5
( $ty: ident) => {
6
6
& RawWakerVTable {
7
7
clone: clone_arc_raw:: <$ty>,
8
- drop_fn : drop_arc_raw:: <$ty>,
8
+ drop : drop_arc_raw:: <$ty>,
9
9
wake: wake_arc_raw:: <$ty>,
10
10
}
11
11
} ;
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ macro_rules! ref_vtable {
45
45
( $ty: ident) => {
46
46
& RawWakerVTable {
47
47
clone: clone_arc_raw:: <$ty>,
48
- drop_fn : noop,
48
+ drop : noop,
49
49
wake: wake_arc_raw:: <$ty>,
50
50
}
51
51
} ;
@@ -55,7 +55,7 @@ macro_rules! owned_vtable {
55
55
( $ty: ident) => {
56
56
& RawWakerVTable {
57
57
clone: clone_arc_raw:: <$ty>,
58
- drop_fn : drop_arc_raw:: <$ty>,
58
+ drop : drop_arc_raw:: <$ty>,
59
59
wake: wake_arc_raw:: <$ty>,
60
60
}
61
61
} ;
You can’t perform that action at this time.
0 commit comments