We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3ca02da + 1177ab5 commit 263b69eCopy full SHA for 263b69e
Extension/src/LanguageServer/configurations.ts
@@ -463,7 +463,7 @@ export class CppProperties {
463
464
// Update the compilerPath, cStandard, and cppStandard with the default if they're missing.
465
let config: Configuration = this.configurationJson.configurations[this.CurrentConfiguration];
466
- if (!config.compilerPath) {
+ if (config.compilerPath === undefined) {
467
config.compilerPath = this.defaultCompilerPath;
468
dirty = true;
469
}
0 commit comments