Skip to content

Commit 484051c

Browse files
committed
tslint
1 parent ce917b5 commit 484051c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Extension/src/LanguageServer/configurations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ export class CppProperties {
277277
private resolveAndSplit(paths: string[]): string[] {
278278
let result: string[] = [];
279279
paths.forEach(entry => {
280-
let entries = util.resolveVariables(entry).split(";").filter(e => e);
280+
let entries: string[] = util.resolveVariables(entry).split(";").filter(e => e);
281281
result = result.concat(entries);
282282
});
283283
return result;

0 commit comments

Comments
 (0)