Merge pull request #83956 from liggitt/intstr-type

Fix proto.Merge of IntOrString type
This commit is contained in:
Kubernetes Prow Robot 2019-10-16 11:37:44 -07:00 committed by GitHub
commit 554412c62c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,7 +45,7 @@ type IntOrString struct {
}
// Type represents the stored type of IntOrString.
type Type int
type Type int64
const (
Int Type = iota // The IntOrString holds an int.