File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ struct object_array {
58
58
59
59
/*
60
60
* object flag allocation:
61
- * revision.h: 0---------10 15 25 ----28
61
+ * revision.h: 0---------10 15 23 ------26
62
62
* fetch-pack.c: 01
63
63
* negotiator/default.c: 2--5
64
64
* walker.c: 0-2
@@ -78,7 +78,7 @@ struct object_array {
78
78
* builtin/show-branch.c: 0-------------------------------------------26
79
79
* builtin/unpack-objects.c: 2021
80
80
*/
81
- #define FLAG_BITS 29
81
+ #define FLAG_BITS 28
82
82
83
83
/*
84
84
* The object type is stored in 3 bits.
Original file line number Diff line number Diff line change 37
37
38
38
/* WARNING: This is also used as REACHABLE in commit-graph.c. */
39
39
#define PULL_MERGE (1u<<15)
40
+
41
+ #define TOPO_WALK_EXPLORED (1u<<23)
42
+ #define TOPO_WALK_INDEGREE (1u<<24)
43
+
40
44
/*
41
45
* Indicates object was reached by traversal. i.e. not given by user on
42
46
* command-line or stdin.
48
52
#define TRACK_LINEAR (1u<<26)
49
53
#define ALL_REV_FLAGS (((1u<<11)-1) | NOT_USER_GIVEN | TRACK_LINEAR | PULL_MERGE)
50
54
51
- #define TOPO_WALK_EXPLORED (1u<<27)
52
- #define TOPO_WALK_INDEGREE (1u<<28)
53
-
54
55
#define DECORATE_SHORT_REFS 1
55
56
#define DECORATE_FULL_REFS 2
56
57
You can’t perform that action at this time.
0 commit comments