vscode: fix the default value for withSysroot

This commit is contained in:
Veetaha 2020-02-16 11:15:19 +02:00
parent d976772716
commit 3068aab82d

View file

@ -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; }
} }