diff options
author | Veetaha <[email protected]> | 2020-02-16 09:15:19 +0000 |
---|---|---|
committer | Veetaha <[email protected]> | 2020-02-16 09:15:19 +0000 |
commit | 3068aab82d06f4fa2082bcaa34d57452247a6cbb (patch) | |
tree | d10aa98350c3b45b4c1a0aadeac9604ca6fa147e /editors/code/src | |
parent | d9767727168c68b4ecf930c9dab5a950c0be8e7b (diff) |
vscode: fix the default value for withSysroot
Diffstat (limited to 'editors/code/src')
-rw-r--r-- | editors/code/src/config.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts index 7866ed7e1..8c033052b 100644 --- a/editors/code/src/config.ts +++ b/editors/code/src/config.ts | |||
@@ -153,5 +153,5 @@ export class Config { | |||
153 | } | 153 | } |
154 | 154 | ||
155 | // for internal use | 155 | // for internal use |
156 | get withSysroot() { return this.cfg.get("withSysroot", false); } | 156 | get withSysroot() { return this.cfg.get("withSysroot", true) as boolean; } |
157 | } | 157 | } |