We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
cppack does not correctly unpack 32-bit MsgPack integers into 64-bit values.
Please see a minimal reproducer below:
std::array<uint64_t, 2> test_num = {65537, 65537}; packer.clear(); packer.process(test_num); std::array<uint64_t, 2> x; unpacker.set_data(packer.vector().data(), packer.vector().size()); unpacker.process(x); REQUIRE(x[0] == 65537); REQUIRE(x[1] == 65537);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
cppack does not correctly unpack 32-bit MsgPack integers into 64-bit values.
Please see a minimal reproducer below:
The text was updated successfully, but these errors were encountered: