From 2fbbcc66c1d14639aa6fad92688ffcd46c8a5533 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 5 Jul 2021 13:54:47 -0400 Subject: clippy --- src/protocol.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/protocol.rs') diff --git a/src/protocol.rs b/src/protocol.rs index 203e6b9..a4b9722 100644 --- a/src/protocol.rs +++ b/src/protocol.rs @@ -1,3 +1,6 @@ +// https://github.com/rust-lang/rust-clippy/issues/6902 +#![allow(clippy::use_self)] + // eventually it would be nice to make this a const function so that we could // just get the version from a variable directly, but this is fine for now pub fn version() -> u32 { -- cgit v1.2.3-54-g00ecf