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
jv.is_int() is true for all integer types so int64 is packed as 32 bit value.
I'm not sure how to correct this error because track message:
std::cout << "pack_long_long" << std::endl
suggests that 32 bit ints should be packed as 64bit values ....
The text was updated successfully, but these errors were encountered:
Hello
I found an error in the message pack code (MSVC).
Here is my example code:
Output:
[50, 563234340645992]
[50, 919383144]
Error is in json/src/msgpack_serialiser.cc:
jv.is_int() is true for all integer types so int64 is packed as 32 bit value.
I'm not sure how to correct this error because track message:
std::cout << "pack_long_long" << std::endl
suggests that 32 bit ints should be packed as 64bit values ....
The text was updated successfully, but these errors were encountered: