aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide_api/src/db.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_ide_api/src/db.rs')
-rw-r--r--crates/ra_ide_api/src/db.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_ide_api/src/db.rs b/crates/ra_ide_api/src/db.rs
index fc5b06ca8..44216b045 100644
--- a/crates/ra_ide_api/src/db.rs
+++ b/crates/ra_ide_api/src/db.rs
@@ -72,8 +72,8 @@ impl salsa::ParallelDatabase for RootDatabase {
72 fn snapshot(&self) -> salsa::Snapshot<RootDatabase> { 72 fn snapshot(&self) -> salsa::Snapshot<RootDatabase> {
73 salsa::Snapshot::new(RootDatabase { 73 salsa::Snapshot::new(RootDatabase {
74 runtime: self.runtime.snapshot(self), 74 runtime: self.runtime.snapshot(self),
75 last_gc: self.last_gc.clone(), 75 last_gc: self.last_gc,
76 last_gc_check: self.last_gc_check.clone(), 76 last_gc_check: self.last_gc_check,
77 }) 77 })
78 } 78 }
79} 79}