Fix warnings

This commit is contained in:
Pierre Krieger 2014-10-05 15:54:37 +02:00
parent 2b5513fa80
commit fe245e2929
2 changed files with 2 additions and 1 deletions

View file

@ -46,7 +46,7 @@ mod android;
mod events; mod events;
#[cfg(not(target_os = "windows"), not(target_os = "linux"), not(target_os = "macos"), not(target_os = "android"))] #[cfg(all(not(target_os = "windows"), not(target_os = "linux"), not(target_os = "macos"), not(target_os = "android")))]
compile_error!("Only the `windows`, `linux` and `macos` platforms are supported") compile_error!("Only the `windows`, `linux` and `macos` platforms are supported")
/// Identifier for a monitor. /// Identifier for a monitor.

View file

@ -1,6 +1,7 @@
#![allow(dead_code)] #![allow(dead_code)]
#![allow(non_snake_case)] #![allow(non_snake_case)]
#![allow(non_camel_case_types)] #![allow(non_camel_case_types)]
#![allow(non_uppercase_statics)]
use libc; use libc;