File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ impl std::ops::Deref for Foo {
21
21
unsafe impl objc:: Message for Foo { }
22
22
impl Foo {
23
23
pub fn alloc ( ) -> Self {
24
- Self ( unsafe { msg_send ! ( objc :: class!( Foo ) , alloc) } )
24
+ Self ( unsafe { msg_send ! ( class!( Foo ) , alloc) } )
25
25
}
26
26
}
27
27
impl IFoo for Foo { }
@@ -38,7 +38,7 @@ impl std::ops::Deref for Bar {
38
38
unsafe impl objc:: Message for Bar { }
39
39
impl Bar {
40
40
pub fn alloc ( ) -> Self {
41
- Self ( unsafe { msg_send ! ( objc :: class!( Bar ) , alloc) } )
41
+ Self ( unsafe { msg_send ! ( class!( Bar ) , alloc) } )
42
42
}
43
43
}
44
44
impl IFoo for Bar { }
@@ -73,7 +73,7 @@ impl std::ops::Deref for Baz {
73
73
unsafe impl objc:: Message for Baz { }
74
74
impl Baz {
75
75
pub fn alloc ( ) -> Self {
76
- Self ( unsafe { msg_send ! ( objc :: class!( Baz ) , alloc) } )
76
+ Self ( unsafe { msg_send ! ( class!( Baz ) , alloc) } )
77
77
}
78
78
}
79
79
impl IBar for Baz { }
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ impl std::ops::Deref for Foo {
21
21
unsafe impl objc:: Message for Foo { }
22
22
impl Foo {
23
23
pub fn alloc ( ) -> Self {
24
- Self ( unsafe { msg_send ! ( objc :: class!( Foo ) , alloc) } )
24
+ Self ( unsafe { msg_send ! ( class!( Foo ) , alloc) } )
25
25
}
26
26
}
27
27
impl < ObjectType : ' static > IFoo < ObjectType > for Foo { }
@@ -45,7 +45,7 @@ impl std::ops::Deref for FooMultiGeneric {
45
45
unsafe impl objc:: Message for FooMultiGeneric { }
46
46
impl FooMultiGeneric {
47
47
pub fn alloc ( ) -> Self {
48
- Self ( unsafe { msg_send ! ( objc :: class!( FooMultiGeneric ) , alloc) } )
48
+ Self ( unsafe { msg_send ! ( class!( FooMultiGeneric ) , alloc) } )
49
49
}
50
50
}
51
51
impl < KeyType : ' static , ObjectType : ' static >
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ impl std::ops::Deref for Foo {
21
21
unsafe impl objc:: Message for Foo { }
22
22
impl Foo {
23
23
pub fn alloc ( ) -> Self {
24
- Self ( unsafe { msg_send ! ( objc :: class!( Foo ) , alloc) } )
24
+ Self ( unsafe { msg_send ! ( class!( Foo ) , alloc) } )
25
25
}
26
26
}
27
27
impl IFoo for Foo { }
@@ -38,7 +38,7 @@ impl std::ops::Deref for Bar {
38
38
unsafe impl objc:: Message for Bar { }
39
39
impl Bar {
40
40
pub fn alloc ( ) -> Self {
41
- Self ( unsafe { msg_send ! ( objc :: class!( Bar ) , alloc) } )
41
+ Self ( unsafe { msg_send ! ( class!( Bar ) , alloc) } )
42
42
}
43
43
}
44
44
impl IFoo for Bar { }
@@ -73,7 +73,7 @@ impl std::ops::Deref for Baz {
73
73
unsafe impl objc:: Message for Baz { }
74
74
impl Baz {
75
75
pub fn alloc ( ) -> Self {
76
- Self ( unsafe { msg_send ! ( objc :: class!( Baz ) , alloc) } )
76
+ Self ( unsafe { msg_send ! ( class!( Baz ) , alloc) } )
77
77
}
78
78
}
79
79
impl IBar for Baz { }
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ impl std::ops::Deref for Foo {
21
21
unsafe impl objc:: Message for Foo { }
22
22
impl Foo {
23
23
pub fn alloc ( ) -> Self {
24
- Self ( unsafe { msg_send ! ( objc :: class!( Foo ) , alloc) } )
24
+ Self ( unsafe { msg_send ! ( class!( Foo ) , alloc) } )
25
25
}
26
26
}
27
27
impl < ObjectType : ' static > IFoo < ObjectType > for Foo { }
@@ -45,7 +45,7 @@ impl std::ops::Deref for FooMultiGeneric {
45
45
unsafe impl objc:: Message for FooMultiGeneric { }
46
46
impl FooMultiGeneric {
47
47
pub fn alloc ( ) -> Self {
48
- Self ( unsafe { msg_send ! ( objc :: class!( FooMultiGeneric ) , alloc) } )
48
+ Self ( unsafe { msg_send ! ( class!( FooMultiGeneric ) , alloc) } )
49
49
}
50
50
}
51
51
impl < KeyType : ' static , ObjectType : ' static >
You can’t perform that action at this time.
0 commit comments