mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-04 10:08:20 +00:00
Remove redundant lifetime parameter from Statement::step()
This commit is contained in:
parent
d5bceaefdb
commit
64213766a2
1 changed files with 1 additions and 1 deletions
|
@ -220,7 +220,7 @@ impl Rows {
|
|||
Self { stmt }
|
||||
}
|
||||
|
||||
pub fn next<'a>(&'a mut self) -> Result<RowResult<'a>> {
|
||||
pub fn next(&mut self) -> Result<RowResult<'_>> {
|
||||
self.stmt.step()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue