use iota for "enum"
Test: m nothing Bug: N/A Change-Id: I9d59796cbf1dc3dc8e1e9fc536b50c1dea3a5f61
This commit is contained in:
parent
ee7a5d7a16
commit
62823dcf01
1 changed files with 3 additions and 3 deletions
|
@ -99,9 +99,9 @@ type BootstrapConfig interface {
|
|||
type StopBefore int
|
||||
|
||||
const (
|
||||
DoEverything StopBefore = 0
|
||||
StopBeforePrepareBuildActions StopBefore = 1
|
||||
StopBeforeWriteNinja StopBefore = 2
|
||||
DoEverything StopBefore = iota
|
||||
StopBeforePrepareBuildActions
|
||||
StopBeforeWriteNinja
|
||||
)
|
||||
|
||||
type PrimaryBuilderInvocation struct {
|
||||
|
|
Loading…
Reference in a new issue