mirror of
				https://github.com/isar/rusqlite.git
				synced 2025-10-31 13:58:55 +08:00 
			
		
		
		
	Fix clippy warning
This commit is contained in:
		| @@ -285,7 +285,7 @@ mod test { | ||||
|         )?; | ||||
|         let mut stmt = db.prepare("SELECT * FROM log;")?; | ||||
|         let mut rows = stmt.query([])?; | ||||
|         while let Some(_) = rows.next()? {} | ||||
|         while rows.next()?.is_some() {} | ||||
|         Ok(()) | ||||
|     } | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user