0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-04 01:44:26 -05:00

chore: fix linter error on main (#28301)

https://github.com/denoland/deno/actions/runs/13526501249/job/37798308222
This commit is contained in:
Nathan Whitaker 2025-02-25 10:11:00 -08:00 committed by GitHub
parent ee4c14a550
commit 9a2386c82d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -393,7 +393,7 @@ impl StatementSync {
struct ResetGuard<'a>(&'a StatementSync);
impl<'a> Drop for ResetGuard<'a> {
impl Drop for ResetGuard<'_> {
fn drop(&mut self) {
let _ = self.0.reset();
}