diff --git a/src/main.rs b/src/main.rs index 056d643..a5396c8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,11 @@ +// Uncomment the following crate-wide attriutes to silence warnings of "low" interest: +/* +#![allow(unused_mut)] +#![allow(dead_code)] +#![allow(unused_variables)] +#![allow(unreachable_code)] +#![allow(non_snake_case)] +*/ extern crate nalgebra_glm as glm; use std::{ mem, ptr, os::raw::c_void }; use std::thread;