Fix clippy warnings

This commit is contained in:
gwenn
2021-06-16 19:22:31 +02:00
committed by Thom Chiovoloni
parent 781d5b9fdd
commit 5730b2f952
7 changed files with 13 additions and 10 deletions

View File

@@ -212,7 +212,7 @@ unsafe impl<'vtab> VTab<'vtab> for CsvTab {
if n_col.is_none() && schema.is_none() {
cols = headers
.into_iter()
.map(|header| escape_double_quote(&header).into_owned())
.map(|header| escape_double_quote(header).into_owned())
.collect();
}
}