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.
compilerPath
1 parent c3e3bd3 commit 70ff2a2Copy full SHA for 70ff2a2
Extension/src/LanguageServer/configurations.ts
@@ -625,6 +625,10 @@ export class CppProperties {
625
}
626
627
public async updateCompilerPathIfSet(path: string): Promise<void> {
628
+ if (!this.propertiesFile) {
629
+ // Properties file does not exist.
630
+ return;
631
+ }
632
return this.handleConfigurationEditJSONCommand(() => {
633
this.parsePropertiesFile(); // Clear out any modifications we may have made internally.
634
const config: Configuration | undefined = this.CurrentConfiguration;
0 commit comments