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.
1 parent 7a76ee1 commit febcf11Copy full SHA for febcf11
Extension/src/LanguageServer/configurations.ts
@@ -2132,6 +2132,16 @@ export class CppProperties {
2132
}
2133
2134
dispose(): void {
2135
+ if (this.lastCustomBrowseConfigurationProviderId !== undefined) {
2136
+ const config: Configuration | undefined = this.CurrentConfiguration;
2137
+ if (config !== undefined && config.configurationProvider !== this.lastCustomBrowseConfigurationProviderId.Value) {
2138
+ this.lastCustomBrowseConfigurationProviderId.Value = undefined;
2139
+ if (this.lastCustomBrowseConfiguration !== undefined) {
2140
+ this.lastCustomBrowseConfiguration.Value = undefined;
2141
+ }
2142
2143
2144
+
2145
this.disposables.forEach((d) => d.dispose());
2146
this.disposables = [];
2147
0 commit comments