File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
crates/icrate/src/fixes/Foundation Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ extern_protocol!(
22
22
#[ optional]
23
23
fn copy( & self ) -> Id <Self :: Immutable >
24
24
where
25
- Self : Sized ,
26
25
Self : CounterpartOrSelf ;
27
26
28
27
/// Returns a new instance that's a copy of the receiver.
@@ -37,7 +36,6 @@ extern_protocol!(
37
36
#[ method_id( copyWithZone: ) ]
38
37
unsafe fn copyWithZone( & self , zone: * mut NSZone ) -> Id <Self :: Immutable >
39
38
where
40
- Self : Sized ,
41
39
Self : CounterpartOrSelf ;
42
40
}
43
41
@@ -65,7 +63,6 @@ extern_protocol!(
65
63
#[ optional]
66
64
fn mutableCopy( & self ) -> Id <Self :: Mutable >
67
65
where
68
- Self : Sized ,
69
66
Self : CounterpartOrSelf ;
70
67
71
68
/// Returns a new instance that's a mutable copy of the receiver.
@@ -80,7 +77,6 @@ extern_protocol!(
80
77
#[ method_id( mutableCopyWithZone: ) ]
81
78
unsafe fn mutableCopyWithZone( & self , zone: * mut NSZone ) -> Id <Self :: Mutable >
82
79
where
83
- Self : Sized ,
84
80
Self : CounterpartOrSelf ;
85
81
}
86
82
You can’t perform that action at this time.
0 commit comments