From 334406028c49caf011d7326dab9c475fa16ce335 Mon Sep 17 00:00:00 2001 From: Roy Ivy III Date: Sat, 28 Dec 2019 13:12:51 -0600 Subject: [PATCH] refactor/polish ~ fix `cargo clippy` complaints (remove useless lint attribute) --- src/printf/tokenize/token.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/printf/tokenize/token.rs b/src/printf/tokenize/token.rs index 78009dd91..2e0cdd812 100644 --- a/src/printf/tokenize/token.rs +++ b/src/printf/tokenize/token.rs @@ -1,6 +1,5 @@ //! Traits and enums dealing with Tokenization of printf Format String use itertools::PutBackN; -#[allow(unused_must_use)] use std::iter::Peekable; use std::slice::Iter; use std::str::Chars;