Merge pull request #436 from Esption/master

Added mut so glutin can compile on nightly.
This commit is contained in:
tomaka 2015-05-08 14:11:04 +02:00
commit 479e51234e

View file

@ -193,7 +193,7 @@ impl<'a> Iterator for PollEventsIterator<'a> {
ffi::KeyPress | ffi::KeyRelease => { ffi::KeyPress | ffi::KeyRelease => {
use events::Event::{KeyboardInput, ReceivedCharacter}; use events::Event::{KeyboardInput, ReceivedCharacter};
use events::ElementState::{Pressed, Released}; use events::ElementState::{Pressed, Released};
let event: &mut ffi::XKeyEvent = unsafe { mem::transmute(&xev) }; let event: &mut ffi::XKeyEvent = unsafe { mem::transmute(&mut xev) };
if event.type_ == ffi::KeyPress { if event.type_ == ffi::KeyPress {
let raw_ev: *mut ffi::XKeyEvent = event; let raw_ev: *mut ffi::XKeyEvent = event;