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 fa2ce41 commit 127209aCopy full SHA for 127209a
lld/MachO/MapFile.cpp
@@ -116,9 +116,7 @@ static MapInfo gatherMapInfo() {
116
// cstrings are not stored in sorted order in their OutputSections, so we sort
117
// them here.
118
for (auto &liveCStrings : info.liveCStringsForSection)
119
- parallelSort(liveCStrings.second, [](const auto &p1, const auto &p2) {
120
- return p1.first < p2.first;
121
- });
+ parallelSort(liveCStrings.second, llvm::less_first());
122
return info;
123
}
124
0 commit comments