Fix some clippy warnings

This commit is contained in:
gwenn
2018-12-06 19:00:55 +01:00
parent 626118ce07
commit dc49b28520
3 changed files with 3 additions and 3 deletions

View File

@@ -47,7 +47,7 @@ impl Error for FromSqlError {
}
}
#[cfg_attr(feature = "clippy", allow(match_same_arms))]
#[allow(clippy::match_same_arms)]
fn cause(&self) -> Option<&Error> {
match *self {
FromSqlError::Other(ref err) => err.cause(),