Clippy fix

This commit is contained in:
liudingming 2021-05-07 15:20:03 +08:00
parent 64e226ef33
commit 4dfc900a99

View file

@ -7,8 +7,8 @@ use std::ops::{Deref, DerefMut};
/// An entity with a span attached.
#[derive(Debug, Clone)]
pub struct Sp<T> {
span: Span,
val: T,
span: Span,
}
impl<T> Sp<T> {