@@ -801,9 +801,8 @@ void LVBinaryReader::processLines(LVLines *DebugLines,
801801
802802 // Find the indexes for the lines whose address is zero.
803803 std::vector<size_t > AddressZero;
804- LVLines::iterator It =
805- std::find_if (std::begin (*DebugLines), std::end (*DebugLines),
806- [](LVLine *Line) { return !Line->getAddress (); });
804+ LVLines::iterator It = llvm::find_if (
805+ *DebugLines, [](LVLine *Line) { return !Line->getAddress (); });
807806 while (It != std::end (*DebugLines)) {
808807 AddressZero.emplace_back (std::distance (std::begin (*DebugLines), It));
809808 It = std::find_if (std::next (It), std::end (*DebugLines),
@@ -930,8 +929,8 @@ void LVBinaryReader::includeInlineeLines(LVSectionIndex SectionIndex,
930929 if (InlineeLines->size ()) {
931930 // First address of inlinee code.
932931 uint64_t InlineeStart = (InlineeLines->front ())->getAddress ();
933- LVLines::iterator Iter = std::find_if (
934- CULines. begin (), CULines. end () , [&](LVLine *Item) -> bool {
932+ LVLines::iterator Iter =
933+ llvm::find_if ( CULines, [&](LVLine *Item) -> bool {
935934 return Item->getAddress () == InlineeStart;
936935 });
937936 if (Iter != CULines.end ()) {
0 commit comments