aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPatrick Horlebein <patrick@ilovepatrick.de>2014-12-30 17:01:37 +0100
committerPatrick Horlebein <patrick@ilovepatrick.de>2014-12-30 17:01:37 +0100
commitb0dddb2d3f10c90128ab250838b314acca131061 (patch)
tree8ecddb2079c779f11fc1a026fb64b7263d9e811c /src
parent09cf026a9de2e1aef43307d64d41a0251159c113 (diff)
downloadglutin-b0dddb2d3f10c90128ab250838b314acca131061.tar.gz
glutin-b0dddb2d3f10c90128ab250838b314acca131061.zip
Fixed missing std::ascii::AsciiExt import
Diffstat (limited to 'src')
-rw-r--r--src/osx/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/osx/mod.rs b/src/osx/mod.rs
index ce02779..739aa77 100644
--- a/src/osx/mod.rs
+++ b/src/osx/mod.rs
@@ -4,6 +4,7 @@ pub use self::headless::HeadlessContext;
use {CreationError, Event};
use CreationError::OsError;
use libc;
+use std::ascii::AsciiExt;
#[cfg(feature = "window")]
use WindowBuilder;