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 61360a8 commit 85936c3Copy full SHA for 85936c3
Extension/src/LanguageServer/configurations.ts
@@ -1423,6 +1423,10 @@ export class CppProperties {
1423
&& !resolvedPath.startsWith('"')
1424
&& compilerPathAndArgs.compilerPath.includes(" ");
1425
resolvedPath = compilerPathAndArgs.compilerPath;
1426
+
1427
+ if (!compilerPathNeedsQuotes && which.sync(resolvedPath)) {
1428
+ continue; // Don't squiggle if compiler path is resolving with environment path.
1429
+ }
1430
}
1431
1432
const isWSL: boolean = isWindows && resolvedPath.startsWith("/");
0 commit comments