mirror of
https://github.com/rust-windowing/winit.git
synced 2026-09-01 22:30:04 -04:00
Removed unstable clone_from method so OSX can compile.
This commit is contained in:
@@ -719,15 +719,5 @@ impl Clone for IdRef {
|
|||||||
}
|
}
|
||||||
IdRef(self.0)
|
IdRef(self.0)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn clone_from(&mut self, source: &IdRef) {
|
|
||||||
if source.0 != nil {
|
|
||||||
let _: id = unsafe { msg_send![source.0, retain] };
|
|
||||||
}
|
|
||||||
if self.0 != nil {
|
|
||||||
let _: () = unsafe { msg_send![self.0, release] };
|
|
||||||
}
|
|
||||||
self.0 = source.0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user