Skip to content

Commit ee5a64b

Browse files
committed
fix typo: negating file set name in sort key
1 parent 8c7309c commit ee5a64b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cmakeListsModifier.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1108,7 +1108,7 @@ class ScopeSourceList extends SourceList {
11081108
isHeader(uri) || isCxxModule(uri) ? HEADER_SCOPES : SOURCE_SCOPES;
11091109
return [
11101110
-Number(!!this.fileSet),
1111-
this.fileSet ? -this.fileSet?.name : '',
1111+
this.fileSet ? this.fileSet?.name : '',
11121112
scopePriorities.indexOf(this.scope)
11131113
].concat(super.sortKeys(uri));
11141114
}

0 commit comments

Comments
 (0)