[#103] protogen: Handle uint32 type
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
parent
ff4f31b6f3
commit
19247e8941
1 changed files with 2 additions and 1 deletions
|
@ -229,7 +229,8 @@ type marshalerDesc struct {
|
|||
var marshalers = map[protoreflect.Kind]marshalerDesc{
|
||||
protoreflect.BoolKind: {Prefix: "Bool"},
|
||||
protoreflect.EnumKind: {Prefix: "Enum"},
|
||||
// protoreflect.Int32Kind: "",
|
||||
|
||||
protoreflect.Int32Kind: {Prefix: "Int32", RepeatedDouble: true},
|
||||
// protoreflect.Sint32Kind: "",
|
||||
protoreflect.Uint32Kind: {Prefix: "UInt32", RepeatedDouble: true},
|
||||
protoreflect.Int64Kind: {Prefix: "Int64", RepeatedDouble: true},
|
||||
|
|
Loading…
Reference in a new issue