Use range

This commit is contained in:
Richard Kimberly Heck 2020-02-28 01:44:48 -05:00
parent 12d164393e
commit 969a1bab7d

View File

@ -47,13 +47,11 @@ void CoordCache::dump() const
} }
LYXERR0("InsetCache contains:"); LYXERR0("InsetCache contains:");
CoordCache::Insets::cache_type::const_iterator it = for (auto const & ccd : getInsets().data_) {
getInsets().data_.begin();
for (; it != getInsets().data_.end(); ++it) {
// Warning: it is not guaranteed that inset is a valid pointer // Warning: it is not guaranteed that inset is a valid pointer
// (therefore it has type 'void *') (see bug #7376). // (therefore it has type 'void *') (see bug #7376).
void const * inset = it->first; void const * inset = ccd.first;
Point const p = it->second.pos; Point const p = ccd.second.pos;
LYXERR0("Inset " << inset << " has point " << p.x_ << "," << p.y_); LYXERR0("Inset " << inset << " has point " << p.x_ << "," << p.y_);
} }
} }