Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

dirstate.cpp: push new dirstate cache entries on front

Changeset becac118cf9b

Parent f3fa5bdd1db2

by Adrian Buehlmann

Changes to one file · Browse files at becac118cf9b Showing diff from parent f3fa5bdd1db2 Diff from another changeset...

 
217
218
219
220
 
 
221
222
223
 
217
218
219
 
220
221
222
223
224
@@ -217,7 +217,8 @@
  {   entry e;   e.hgroot = hgroot; - iter = _cache.insert(iter, e); + _cache.push_front(e); + iter = _cache.begin();   }     if (iter->mtime < stat.st_mtime)