diff options
author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2013-03-21 00:57:21 +0000 |
---|---|---|
committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2013-03-21 00:57:21 +0000 |
commit | 26c417bb588a3e5f9957cf5ba2a034b92513ec15 (patch) | |
tree | 39cf43da9a1d1a0908fadb03d1636fc4ff6ab5f0 /lib/DebugInfo | |
parent | cf47ce616c53040cb8aa09eff9dc0b693e571842 (diff) | |
download | external_llvm-26c417bb588a3e5f9957cf5ba2a034b92513ec15.zip external_llvm-26c417bb588a3e5f9957cf5ba2a034b92513ec15.tar.gz external_llvm-26c417bb588a3e5f9957cf5ba2a034b92513ec15.tar.bz2 |
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
Diffstat (limited to 'lib/DebugInfo')
-rw-r--r-- | lib/DebugInfo/DWARFDebugAranges.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/DebugInfo/DWARFDebugAranges.cpp b/lib/DebugInfo/DWARFDebugAranges.cpp index b077eb5..f79862d 100644 --- a/lib/DebugInfo/DWARFDebugAranges.cpp +++ b/lib/DebugInfo/DWARFDebugAranges.cpp @@ -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; |