##// END OF EJS Templates
parsers: fix variable declaration position issue
Matt Mackall -
r19030:48d6f436 default
parent child Browse files
Show More
@@ -1192,6 +1192,7 b' static PyObject *find_gca_candidates(ind'
1192 1192 PyObject *gca = PyList_New(0);
1193 1193 int i, v, interesting, left;
1194 1194 int maxrev = -1;
1195 long sp;
1195 1196 bitmask *seen;
1196 1197
1197 1198 for (i = 0; i < revcount; i++) {
@@ -1241,7 +1242,7 b' static PyObject *find_gca_candidates(ind'
1241 1242 int p = parents[i];
1242 1243 if (p == -1)
1243 1244 continue;
1244 const long sp = seen[p];
1245 sp = seen[p];
1245 1246 if (sv < poison) {
1246 1247 if (sp == 0) {
1247 1248 seen[p] = sv;
General Comments 0
You need to be logged in to leave comments. Login now