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 a17cb42 commit d51ae12Copy full SHA for d51ae12
Extension/src/LanguageServer/configurations.ts
@@ -403,7 +403,8 @@ export class CppProperties {
403
configuration.intelliSenseMode === "${default}") {
404
return true;
405
}
406
- let compilerPathAndArgs: util.CompilerPathAndArgs = util.extractCompilerPathAndArgs(configuration.compilerPath);
+ let resolvedCompilerPath: string = this.resolvePath(configuration.compilerPath, true);
407
+ let compilerPathAndArgs: util.CompilerPathAndArgs = util.extractCompilerPathAndArgs(resolvedCompilerPath);
408
return (compilerPathAndArgs.compilerName === "cl.exe") === (configuration.intelliSenseMode === "msvc-x64" || configuration.intelliSenseMode === "msvc-x86");
409
410
0 commit comments