We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e020801 commit 0c61ee9Copy full SHA for 0c61ee9
Extension/src/LanguageServer/configurations.ts
@@ -435,9 +435,9 @@ export class CppProperties {
435
private resolveAndSplit(paths: string[] | undefined, defaultValue: string[], env: Environment): string[] {
436
let result: string[] = [];
437
if (paths) {
438
+ paths = this.resolveDefaults(paths, defaultValue);
439
paths.forEach(entry => {
440
let entries: string[] = util.resolveVariables(entry, env).split(";").filter(e => e);
- entries = this.resolveDefaults(entries, defaultValue);
441
result = result.concat(entries);
442
});
443
}
0 commit comments