refactor: suppress unused variable warning by renaming parameter to _f

This commit is contained in:
Andrew Phillips (aider)
2025-05-12 13:23:04 -03:00
parent 2a7539e558
commit 7490be8e42

View File

@@ -35,7 +35,7 @@ mod tests {
} }
// Helper function to create test items with specific content and tags // Helper function to create test items with specific content and tags
fn create_test_items<F>(dir: &Path, f: F) fn create_test_items<F>(dir: &Path, _f: F)
where where
F: FnOnce(&str, &str), F: FnOnce(&str, &str),
{ {