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: change dirstatecache to class

now only accessible by using get()

Changeset 618ae08ce2b7

Parent 1a07e465ac85

by Adrian Buehlmann

Changes to one file · Browse files at 618ae08ce2b7 Showing diff from parent 1a07e465ac85 Diff from another changeset...

 
89
90
91
92
 
93
94
95
 
97
98
99
 
 
100
101
102
 
89
90
91
 
92
93
94
95
 
97
98
99
100
101
102
103
104
@@ -89,7 +89,7 @@
 };     -struct dirstatecache +class dirstatecache  {   const dirstate* dstate;   dirstatecache* next; @@ -97,6 +97,8 @@
  std::string path;     dirstatecache(): dstate(0), next(0), mtime(0) {} + +public:   static const dirstate* get(const char* hgroot);    private: