mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-13 13:48:50 +00:00
vscode: fix the default value for withSysroot
This commit is contained in:
parent
d976772716
commit
3068aab82d
1 changed files with 1 additions and 1 deletions
|
@ -153,5 +153,5 @@ export class Config {
|
||||||
}
|
}
|
||||||
|
|
||||||
// for internal use
|
// for internal use
|
||||||
get withSysroot() { return this.cfg.get("withSysroot", false); }
|
get withSysroot() { return this.cfg.get("withSysroot", true) as boolean; }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue