Unnamed repository; edit this file 'description' to name the repository.
Auto merge of #16795 - mu001999:master, r=Veykril
remove unused struct Snap in lsif Detected by #121752, see https://github.com/rust-lang/rust/pull/121752#issuecomment-1986378328
bors 2024-03-09
parent 2397e7a · parent 79508d9 · commit 8f08bbe
-rw-r--r--crates/rust-analyzer/src/cli/lsif.rs14
1 files changed, 1 insertions, 13 deletions
diff --git a/crates/rust-analyzer/src/cli/lsif.rs b/crates/rust-analyzer/src/cli/lsif.rs
index 31d2a67981..f3f5ec1ebd 100644
--- a/crates/rust-analyzer/src/cli/lsif.rs
+++ b/crates/rust-analyzer/src/cli/lsif.rs
@@ -7,11 +7,7 @@ use ide::{
Analysis, AnalysisHost, FileId, FileRange, MonikerKind, PackageInformation, RootDatabase,
StaticIndex, StaticIndexedFile, TokenId, TokenStaticData,
};
-use ide_db::{
- base_db::salsa::{self, ParallelDatabase},
- line_index::WideEncoding,
- LineIndexDatabase,
-};
+use ide_db::{line_index::WideEncoding, LineIndexDatabase};
use load_cargo::{load_workspace, LoadCargoConfig, ProcMacroServerChoice};
use lsp_types::lsif;
use project_model::{CargoConfig, ProjectManifest, ProjectWorkspace, RustLibSource};
@@ -25,14 +21,6 @@ use crate::{
version::version,
};
-/// Need to wrap Snapshot to provide `Clone` impl for `map_with`
-struct Snap<DB>(DB);
-impl<DB: ParallelDatabase> Clone for Snap<salsa::Snapshot<DB>> {
- fn clone(&self) -> Snap<salsa::Snapshot<DB>> {
- Snap(self.0.snapshot())
- }
-}
-
struct LsifManager<'a> {
count: i32,
token_map: FxHashMap<TokenId, Id>,