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: move #define HASH_LENGTH further down

Moved it to right before it is first used.

Changeset 613a729db60b

Parent 3a637b71ad28

by Adrian Buehlmann

Changes to one file · Browse files at 613a729db60b Showing diff from parent 3a637b71ad28 Diff from another changeset...

 
47
48
49
50
51
52
53
54
55
 
89
90
91
 
 
 
92
93
94
 
47
48
49
 
 
 
50
51
52
 
86
87
88
89
90
91
92
93
94
@@ -47,9 +47,6 @@
 #endif     -#define HASH_LENGTH 20 - -  struct direntry  {   unsigned char state; @@ -89,6 +86,9 @@
 }     +#define HASH_LENGTH 20 + +  class dirstate  {   typedef std::vector<direntry> EntriesT;