clippy::semicolon_if_nothing_returned

This commit is contained in:
gwenn
2022-01-05 19:53:49 +01:00
committed by Thom Chiovoloni
parent 406ac6a7fc
commit 68f41d6e9e
7 changed files with 14 additions and 14 deletions

View File

@@ -143,7 +143,7 @@ impl Sql {
if ch == quote {
self.buf.push(ch);
}
self.buf.push(ch)
self.buf.push(ch);
}
self.buf.push(quote);
}