blob: 36ffff29dda088fa0d16d916390057b2cb5c281f (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package commitquery
type markBits uint8
const (
markLeft markBits = 1 << iota
markRight
markStale
markResult
)
const (
allMarks = markLeft | markRight | markStale | markResult
)
|