use iota for "enum" am: 62823dcf01
Original change: https://android-review.googlesource.com/c/platform/build/blueprint/+/1953567 Change-Id: Ibef4900bcc72a4a19b9b0d44fca4af851d3caafa
This commit is contained in:
commit
2cacef74be
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