From 238385a87f7df819cb351014225170ddda16cd42 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Fri, 20 Jan 2017 10:02:17 +0100 Subject: [PATCH] Allow unused variables here As the methods!() macro seems to introduce an unused variable "itself" for rustc 1.13 ... not sure whether this is valid or not. --- imag-ruby/src/store.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/imag-ruby/src/store.rs b/imag-ruby/src/store.rs index 04e24bfe..480c21da 100644 --- a/imag-ruby/src/store.rs +++ b/imag-ruby/src/store.rs @@ -17,6 +17,7 @@ // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA // +#[allow(unused_variables)] pub mod storeid { use std::path::PathBuf; @@ -139,3 +140,4 @@ pub mod storeid { } } +