diff options
author | Steven Sheldon <steven@sasheldon.com> | 2015-04-03 02:30:29 -0700 |
---|---|---|
committer | Steven Sheldon <steven@sasheldon.com> | 2015-04-03 02:30:29 -0700 |
commit | a65a4fd15a3d9736cd9842b4fe3ea8c944188557 (patch) | |
tree | 6abf9fb09082fa357cae1663d8c9ba9ea31c9a02 /src/cocoa/mod.rs | |
parent | 631cedb58c67b3eb18121e872fcd8d5fcc3831e1 (diff) | |
download | glutin-a65a4fd15a3d9736cd9842b4fe3ea8c944188557.tar.gz glutin-a65a4fd15a3d9736cd9842b4fe3ea8c944188557.zip |
Removed unstable clone_from method so OSX can compile.
Diffstat (limited to 'src/cocoa/mod.rs')
-rw-r--r-- | src/cocoa/mod.rs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/cocoa/mod.rs b/src/cocoa/mod.rs index e756aba..ca9d888 100644 --- a/src/cocoa/mod.rs +++ b/src/cocoa/mod.rs @@ -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; - } } |