From 4dfc900a996e90036f63866c3cb316ab4742225d Mon Sep 17 00:00:00 2001 From: liudingming Date: Fri, 7 May 2021 15:20:03 +0800 Subject: [PATCH] Clippy fix --- clap_derive/src/utils/spanned.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clap_derive/src/utils/spanned.rs b/clap_derive/src/utils/spanned.rs index 406962a7..11415f6f 100644 --- a/clap_derive/src/utils/spanned.rs +++ b/clap_derive/src/utils/spanned.rs @@ -7,8 +7,8 @@ use std::ops::{Deref, DerefMut}; /// An entity with a span attached. #[derive(Debug, Clone)] pub struct Sp { - span: Span, val: T, + span: Span, } impl Sp {