mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-20 16:17:38 +00:00
Fix missing std::. Not sure how this compiles for anyone else.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177620 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -186,7 +186,7 @@ uint32_t DWARFDebugAranges::findAddress(uint64_t address) const {
|
||||
Range range(address);
|
||||
RangeCollIterator begin = Aranges.begin();
|
||||
RangeCollIterator end = Aranges.end();
|
||||
RangeCollIterator pos = lower_bound(begin, end, range, RangeLessThan);
|
||||
RangeCollIterator pos = std::lower_bound(begin, end, range, RangeLessThan);
|
||||
|
||||
if (pos != end && pos->LoPC <= address && address < pos->HiPC()) {
|
||||
return pos->Offset;
|
||||
|
||||
Reference in New Issue
Block a user