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() } }