diff options
author | tomaka <pierre.krieger1708@gmail.com> | 2015-11-09 10:10:22 +0100 |
---|---|---|
committer | tomaka <pierre.krieger1708@gmail.com> | 2015-11-09 10:10:22 +0100 |
commit | bfc46c56703eab9404651ea9dd4a195acbe8c784 (patch) | |
tree | bf8f195f8b38c7f6d78d917fe95ed768bcaaefc5 /src/platform/ios/mod.rs | |
parent | 439d25168e0145bb563c2675ce490c521448f4ba (diff) | |
parent | b02265fa1103c526c365d7768e3c8ae3633cf4cf (diff) | |
download | glutin-bfc46c56703eab9404651ea9dd4a195acbe8c784.tar.gz glutin-bfc46c56703eab9404651ea9dd4a195acbe8c784.zip |
Merge pull request #652 from tomaka/rem-gl-common
[Breaking change] Remove public exports of gl_common and libc
Diffstat (limited to 'src/platform/ios/mod.rs')
-rw-r--r-- | src/platform/ios/mod.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/platform/ios/mod.rs b/src/platform/ios/mod.rs index 95fa7e1..aeaebc3 100644 --- a/src/platform/ios/mod.rs +++ b/src/platform/ios/mod.rs @@ -1,5 +1,4 @@ #![cfg(target_os = "ios")] -use libc::c_void; use GlAttributes; use CreationError; @@ -33,7 +32,7 @@ impl HeadlessContext { } /// See the docs in the crate root file. - pub fn get_proc_address(&self, _addr: &str) -> *const c_void { + pub fn get_proc_address(&self, _addr: &str) -> *const () { unimplemented!() } |