|
|
@@ -269,14 +269,14 @@ var goTypeForPBKind = map[protoreflect.Kind]reflect.Type{
|
|
|
protoreflect.BoolKind: reflect.TypeOf(bool(false)),
|
|
|
protoreflect.Int32Kind: reflect.TypeOf(int32(0)),
|
|
|
protoreflect.Sint32Kind: reflect.TypeOf(int32(0)),
|
|
|
- protoreflect.Fixed32Kind: reflect.TypeOf(int32(0)),
|
|
|
+ protoreflect.Sfixed32Kind: reflect.TypeOf(int32(0)),
|
|
|
protoreflect.Int64Kind: reflect.TypeOf(int64(0)),
|
|
|
protoreflect.Sint64Kind: reflect.TypeOf(int64(0)),
|
|
|
- protoreflect.Fixed64Kind: reflect.TypeOf(int64(0)),
|
|
|
+ protoreflect.Sfixed64Kind: reflect.TypeOf(int64(0)),
|
|
|
protoreflect.Uint32Kind: reflect.TypeOf(uint32(0)),
|
|
|
- protoreflect.Sfixed32Kind: reflect.TypeOf(uint32(0)),
|
|
|
+ protoreflect.Fixed32Kind: reflect.TypeOf(uint32(0)),
|
|
|
protoreflect.Uint64Kind: reflect.TypeOf(uint64(0)),
|
|
|
- protoreflect.Sfixed64Kind: reflect.TypeOf(uint64(0)),
|
|
|
+ protoreflect.Fixed64Kind: reflect.TypeOf(uint64(0)),
|
|
|
protoreflect.FloatKind: reflect.TypeOf(float32(0)),
|
|
|
protoreflect.DoubleKind: reflect.TypeOf(float64(0)),
|
|
|
protoreflect.StringKind: reflect.TypeOf(string("")),
|