Merge pull request #25 from DavidPartouche/master

Fixed broken build with latest rust update (use 'foo' = 'bar' syntax err...
This commit is contained in:
tomaka 2014-08-19 19:23:16 +02:00
commit ec8cbce624

View file

@ -26,11 +26,11 @@ pub use events::*;
use std::default::Default;
#[cfg(target_os = "windows")]
use winimpl = win32;
use win32 as winimpl;
#[cfg(target_os = "linux")]
use winimpl = x11;
use x11 as winimpl;
#[cfg(target_os = "macos")]
use winimpl = osx;
use osx as winimpl;
#[cfg(target_os = "windows")]
mod win32;