X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FTextCache.C;h=6b3d9b4b832cecf651d6584cb91b968693ed618f;hb=00d24ec87650e4ac7db77ad54cb4aa2f688100f3;hp=f7133d60302feff5171c6861452159353fc453ac;hpb=76ef051b1cb1fb51c3ffd8ccc9105be4471e74d4;p=lyx.git diff --git a/src/TextCache.C b/src/TextCache.C index f7133d6030..6b3d9b4b83 100644 --- a/src/TextCache.C +++ b/src/TextCache.C @@ -21,6 +21,7 @@ #include "TextCache.h" #include "buffer.h" #include "bufferlist.h" +#include "debug.h" using std::ostream; using std::for_each; @@ -75,7 +76,7 @@ LyXText * TextCache::findFit(Buffer * b, int p) Cache::iterator it = find_if(cache.begin(), cache.end(), text_fits(b, p)); if (it != cache.end()) { - LyXText * tmp = (*it).second.second; + LyXText * tmp = it->second.second; cache.erase(it); return tmp; }