mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-24 22:31:30 +11:00
Merge pull request #352 from SSheldon/stable_rust
Update OSX to compile on stable rust
This commit is contained in:
commit
cd7c1264bf
2
build.rs
2
build.rs
|
@ -1,5 +1,3 @@
|
|||
#![feature(convert)]
|
||||
|
||||
extern crate gl_generator;
|
||||
extern crate khronos_api;
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
#![feature(std_misc)]
|
||||
|
||||
#[cfg(target_os = "android")]
|
||||
#[macro_use]
|
||||
extern crate android_glue;
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
#![feature(std_misc)]
|
||||
|
||||
#[cfg(target_os = "android")]
|
||||
#[macro_use]
|
||||
extern crate android_glue;
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
#![feature(std_misc)]
|
||||
|
||||
#[cfg(target_os = "android")]
|
||||
#[macro_use]
|
||||
extern crate android_glue;
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
#![feature(std_misc)]
|
||||
|
||||
#[cfg(target_os = "android")]
|
||||
#[macro_use]
|
||||
extern crate android_glue;
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
#![feature(std_misc)]
|
||||
|
||||
#[cfg(target_os = "android")]
|
||||
#[macro_use]
|
||||
extern crate android_glue;
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
#![feature(std_misc)]
|
||||
|
||||
#[cfg(target_os = "android")]
|
||||
#[macro_use]
|
||||
extern crate android_glue;
|
||||
|
|
|
@ -719,15 +719,5 @@ impl Clone for IdRef {
|
|||
}
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue