Remove use of asymmetric std::lower_bound comparator.

VS 2008 doesn't like it when in debug mode.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185676 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ahmed Bougacha
2013-07-04 23:20:12 +00:00
parent 09bb56f0a0
commit 5679d7da01
2 changed files with 23 additions and 12 deletions

View File

@ -51,6 +51,11 @@ class MCModule {
/// \brief Insert an atom in the module, using its Begin and End addresses.
void map(MCAtom *NewAtom);
/// \brief Return an iterator to the first atom that is completely or in part
/// located after \p Addr, i.e., that \p Addr is bigger than its end address.
AtomListTy::const_iterator atom_lower_bound(uint64_t Addr) const;
AtomListTy:: iterator atom_lower_bound(uint64_t Addr);
/// @}
/// \name Function tracking