Skip to content

Commit ff6e912

Browse files
alibektasVeykril
authored andcommitted
Apply requested changes round 2
1 parent 53b5038 commit ff6e912

File tree

11 files changed

+1159
-1269
lines changed

11 files changed

+1159
-1269
lines changed

src/tools/rust-analyzer/crates/paths/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ impl AbsPathBuf {
150150
/// * if `self` has a verbatim prefix (e.g. `\\?\C:\windows`)
151151
/// and `path` is not empty, the new path is normalized: all references
152152
/// to `.` and `..` are removed.
153-
pub fn push(&mut self, suffix: &str) {
153+
pub fn push<P: AsRef<Utf8Path>>(&mut self, suffix: P) {
154154
self.0.push(suffix)
155155
}
156156
}

src/tools/rust-analyzer/crates/rust-analyzer/src/bin/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ fn run_server() -> anyhow::Result<()> {
229229
let mut change = ConfigChange::default();
230230
change.change_client_config(json);
231231
let mut error_sink = ConfigError::default();
232-
config = config.apply_change(change, &mut error_sink);
232+
(config, _) = config.apply_change(change, &mut error_sink);
233233
if !error_sink.is_empty() {
234234
use lsp_types::{
235235
notification::{Notification, ShowMessage},

src/tools/rust-analyzer/crates/rust-analyzer/src/cli/scip.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ impl flags::Scip {
4646
let mut change = ConfigChange::default();
4747
change.change_client_config(json);
4848
let mut error_sink = ConfigError::default();
49-
config = config.apply_change(change, &mut error_sink);
49+
(config, _) = config.apply_change(change, &mut error_sink);
5050
// FIXME @alibektas : What happens to errors without logging?
5151
error!(?error_sink, "Config Error(s)");
5252
}

0 commit comments

Comments
 (0)