Satisfy warnings

This commit is contained in:
Joscha 2022-11-20 22:15:56 +01:00
parent 3ed3c4e8f8
commit 03e7f10739
14 changed files with 66 additions and 66 deletions

View file

@ -40,9 +40,9 @@ pub enum Call {
impl HasSpan for Call {
fn span(&self) -> Span {
match self {
Call::Arg { span, .. } => *span,
Call::NoArg { span, .. } => *span,
Call::Constr { span, .. } => *span,
Self::Arg { span, .. } => *span,
Self::NoArg { span, .. } => *span,
Self::Constr { span, .. } => *span,
}
}
}