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

DirectoryStatus.cpp: change order in if expression

'm' is much more frequent than 'r'

Changeset 7c93021735af

Parent 64b70ff0fdc0

by Adrian Buehlmann

Changes to one file · Browse files at 7c93021735af Showing diff from parent 64b70ff0fdc0 Diff from another changeset...

 
30
31
32
33
 
34
35
36
 
30
31
32
 
33
34
35
36
@@ -30,7 +30,7 @@
  const E& e = *i;   if (e.path_.compare(0, relpath.length(), relpath) == 0)   { - if (e.status_ == 'r' || e.status_ == 'm') + if (e.status_ == 'm' || e.status_ == 'r')   {   modified = true;   break;