diff options
author | Patrick Horlebein <patrick@ilovepatrick.de> | 2014-12-30 17:01:37 +0100 |
---|---|---|
committer | Patrick Horlebein <patrick@ilovepatrick.de> | 2014-12-30 17:01:37 +0100 |
commit | b0dddb2d3f10c90128ab250838b314acca131061 (patch) | |
tree | 8ecddb2079c779f11fc1a026fb64b7263d9e811c /src | |
parent | 09cf026a9de2e1aef43307d64d41a0251159c113 (diff) | |
download | glutin-b0dddb2d3f10c90128ab250838b314acca131061.tar.gz glutin-b0dddb2d3f10c90128ab250838b314acca131061.zip |
Fixed missing std::ascii::AsciiExt import
Diffstat (limited to 'src')
-rw-r--r-- | src/osx/mod.rs | 1 |
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; |