aboutsummaryrefslogtreecommitdiff
path: root/crates/rust-analyzer/src/main_loop.rs
diff options
context:
space:
mode:
authorJonas Schievink <[email protected]>2021-02-12 11:09:54 +0000
committerJonas Schievink <[email protected]>2021-02-12 12:05:56 +0000
commit70f388cedba89c204131ebc81a202563a8e19437 (patch)
treea889b01d490f653970ff54320e2edcb91c1893b1 /crates/rust-analyzer/src/main_loop.rs
parentb0f20a795d6b1f8d36d1cbe294e54ac592b98f5e (diff)
Pin Rust to 1.49.0 on CI
Diffstat (limited to 'crates/rust-analyzer/src/main_loop.rs')
-rw-r--r--crates/rust-analyzer/src/main_loop.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/rust-analyzer/src/main_loop.rs b/crates/rust-analyzer/src/main_loop.rs
index f4fd1ac13..bdffff5ae 100644
--- a/crates/rust-analyzer/src/main_loop.rs
+++ b/crates/rust-analyzer/src/main_loop.rs
@@ -398,7 +398,7 @@ impl GlobalState {
398 } 398 }
399 399
400 let state_changed = self.process_changes(); 400 let state_changed = self.process_changes();
401 let is_ready = matches!(self.status, Status::Ready { .. } ); 401 let is_ready = matches!(self.status, Status::Ready { .. });
402 if prev_status == Status::Loading && is_ready { 402 if prev_status == Status::Loading && is_ready {
403 for flycheck in &self.flycheck { 403 for flycheck in &self.flycheck {
404 flycheck.update(); 404 flycheck.update();