diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2024-11-27 15:44:10 +0100 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2024-11-28 03:05:43 +0100 |
| commit | f0c301ffe47470caf3f809ee8fc0119e4cb49317 (patch) | |
| tree | b42e704826a157ec74617035966c55e9cfbc38db /src/librustdoc/formats/cache.rs | |
| parent | 39cb3386ddc6c71657418be28dbb3987eea4aa4b (diff) | |
| download | rust-f0c301ffe47470caf3f809ee8fc0119e4cb49317.tar.gz rust-f0c301ffe47470caf3f809ee8fc0119e4cb49317.zip | |
Fix new clippy lints
Diffstat (limited to 'src/librustdoc/formats/cache.rs')
| -rw-r--r-- | src/librustdoc/formats/cache.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/formats/cache.rs b/src/librustdoc/formats/cache.rs index ff0d537b19f..e387eb010be 100644 --- a/src/librustdoc/formats/cache.rs +++ b/src/librustdoc/formats/cache.rs @@ -203,7 +203,7 @@ impl Cache { } } -impl<'a, 'tcx> DocFolder for CacheBuilder<'a, 'tcx> { +impl DocFolder for CacheBuilder<'_, '_> { fn fold_item(&mut self, item: clean::Item) -> Option<clean::Item> { if item.item_id.is_local() { debug!( |
