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: use operator==() for std::string in dirstatecache::get

Changeset 103c8bb076c3

Parent 56d3e8623219

by Adrian Buehlmann

Changes to one file · Browse files at 103c8bb076c3 Showing diff from parent 56d3e8623219 Diff from another changeset...

 
177
178
179
180
 
181
182
183
 
177
178
179
 
180
181
182
183
@@ -177,7 +177,7 @@
    for (;iter != _cache.end(); ++iter)   { - if (strncmp(path.c_str(), iter->path.c_str(), MAX_PATH) == 0) + if (path == iter->path)   break;   }