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: back to using std::vector for dirstate::EntriesT

The speed degradation seems not worth the memory saved

Changeset fb915dc724c9

Parent a751ba19dbae

by Adrian Buehlmann

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

 
23
24
25
26
27
28
29
 
95
96
97
98
 
99
100
101
 
23
24
25
 
26
27
28
 
94
95
96
 
97
98
99
100
@@ -23,7 +23,6 @@
   #include <vector>  #include <list> -#include <deque>      #ifdef WIN32 @@ -95,7 +94,7 @@
   class dirstate  { - typedef std::deque<direntry> EntriesT; + typedef std::vector<direntry> EntriesT;     EntriesT entries;