From 64213766a2f27ed90853d8aa19a220f63153eaeb Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Sun, 28 Jan 2024 10:19:31 +0200 Subject: [PATCH] Remove redundant lifetime parameter from Statement::step() --- core/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib.rs b/core/lib.rs index d1d8f8a61..050f0c422 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -220,7 +220,7 @@ impl Rows { Self { stmt } } - pub fn next<'a>(&'a mut self) -> Result> { + pub fn next(&mut self) -> Result> { self.stmt.step() } }