[NFC] Use llvm::includes instead of std::includes (#143542)
This PR follows up #143297.
This commit is contained in:
@@ -1308,7 +1308,7 @@ getMappedRanges(ArrayRef<Range> Indexed, ArrayRef<SymbolRange> Lexed) {
|
||||
return std::nullopt;
|
||||
}
|
||||
// Fast check for the special subset case.
|
||||
if (std::includes(Indexed.begin(), Indexed.end(), Lexed.begin(), Lexed.end()))
|
||||
if (llvm::includes(Indexed, Lexed))
|
||||
return Lexed.vec();
|
||||
|
||||
std::vector<size_t> Best;
|
||||
|
||||
Reference in New Issue
Block a user