Merge pull request #90 from jameslan/fix/fixed-types

fixed field types should be int
This commit is contained in:
Bouke Versteegh
2020-06-15 19:48:31 +02:00
committed by GitHub
3 changed files with 16 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
{
"foo": 4294967295,
"bar": -2147483648,
"baz": "18446744073709551615",
"qux": "-9223372036854775808"
}

View File

@@ -0,0 +1,8 @@
syntax = "proto3";
message Test {
fixed32 foo = 1;
sfixed32 bar = 2;
fixed64 baz = 3;
sfixed64 qux = 4;
}