don't error on warnings

Nice and all when you keep up with development,
but can cause random errors by the addition of new
errors to the compiler.
This commit is contained in:
Jordan Petridis 2019-03-30 16:34:55 +02:00
parent 3f28b9abc4
commit 7dc1b25ee7
No known key found for this signature in database
GPG Key ID: E8523968931763BE
3 changed files with 3 additions and 3 deletions

View File

@ -62,7 +62,7 @@
missing_copy_implementations missing_copy_implementations
)] )]
#![allow(proc_macro_derive_resolution_fallback)] #![allow(proc_macro_derive_resolution_fallback)]
#![deny(warnings)] // #![deny(warnings)]
//! FIXME: Docs //! FIXME: Docs

View File

@ -39,7 +39,7 @@
elided_lifetime_in_paths, elided_lifetime_in_paths,
missing_copy_implementations missing_copy_implementations
)] )]
#![deny(warnings)] // #![deny(warnings)]
extern crate failure; extern crate failure;
#[macro_use] #[macro_use]

View File

@ -41,7 +41,7 @@
elided_lifetime_in_paths, elided_lifetime_in_paths,
missing_copy_implementations missing_copy_implementations
)] )]
#![deny(warnings)] // #![deny(warnings)]
extern crate gdk; extern crate gdk;
extern crate gdk_pixbuf; extern crate gdk_pixbuf;