From 49d0cbfe8fdd3c33658e8d64be24e879cb7849e1 Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Tue, 16 Jun 2020 14:15:54 +0200 Subject: [PATCH] registry: silence clippy warnings --- nihav-registry/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nihav-registry/src/lib.rs b/nihav-registry/src/lib.rs index 915f763..2e53255 100644 --- a/nihav-registry/src/lib.rs +++ b/nihav-registry/src/lib.rs @@ -3,4 +3,5 @@ extern crate nihav_core; #[allow(clippy::unreadable_literal)] pub mod detect; -pub mod register; \ No newline at end of file +#[allow(clippy::trivially_copy_pass_by_ref)] +pub mod register; -- 2.30.2