mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-27 14:24:40 +00:00
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:
@ -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
|
||||
|
Reference in New Issue
Block a user