use iota for "enum" am: 62823dcf01 am: 2cacef74be am: 265745d7e0

Original change: https://android-review.googlesource.com/c/platform/build/blueprint/+/1953567

Change-Id: Ia77f94ecaeb919afddec53fdd4af02af8238f1bd
This commit is contained in:
Usta Shrestha 2022-01-19 01:48:08 +00:00 committed by Automerger Merge Worker
commit 7e6d27f79d

View file

@ -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 {