From 36a283f0041fbe8f039a047b539dbae5d57672ea Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Mon, 6 Sep 2021 09:55:59 +0200 Subject: [PATCH] Shush --- src/main.rs | 8 ++++++++ 1 file changed, 8 insertions(+) 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;