You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
0x2a is in the positive fixint type, meaning it is a signed number via spec. You need to use a number > 0x7f to make it unspecified and then the configuration can take effect. See https://github.com/msgpack/msgpack/blob/master/spec.md
I use Go 1.4.1.
MsgpackDecoder produce int64 for unsigned integer while I set
SignedInteger = false
.https://gist.github.com/methane/cfdcce8257a6406dd2ad
Output of this code is
42, int64
.The text was updated successfully, but these errors were encountered: