aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBryan Bell <bryan.w.bell@gmail.com>2015-01-12 19:45:20 -0800
committerBryan Bell <bryan.w.bell@gmail.com>2015-01-12 19:45:20 -0800
commit5389c73b852d82ddfbc66ffacdf5620f431275dd (patch)
tree2de7a9d2d652be0ee69a03eae0eab22b133acc3d /src
parent95f0990074155b1c44c9152f717730d3a1e71776 (diff)
downloadglutin-5389c73b852d82ddfbc66ffacdf5620f431275dd.tar.gz
glutin-5389c73b852d82ddfbc66ffacdf5620f431275dd.zip
Fix OS X & Win32 builds
Diffstat (limited to 'src')
-rw-r--r--src/osx/mod.rs2
-rw-r--r--src/win32/mod.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/osx/mod.rs b/src/osx/mod.rs
index 2052286..7b362ba 100644
--- a/src/osx/mod.rs
+++ b/src/osx/mod.rs
@@ -1,7 +1,7 @@
#[cfg(feature = "headless")]
pub use self::headless::HeadlessContext;
-use {CreationError, Event};
+use {CreationError, Event, MouseCursor};
use CreationError::OsError;
use libc;
diff --git a/src/win32/mod.rs b/src/win32/mod.rs
index 0d72c17..463d5fe 100644
--- a/src/win32/mod.rs
+++ b/src/win32/mod.rs
@@ -4,7 +4,7 @@ use std::ffi::CString;
use std::collections::RingBuf;
use std::sync::mpsc::Receiver;
use libc;
-use {CreationError, Event};
+use {CreationError, Event, MouseCursor};
use BuilderAttribs;