cppack icon indicating copy to clipboard operation
cppack copied to clipboard

A modern c++ implementation of the msgpack spec. - msgpack.org[C++17]

Results 13 cppack issues
Sort by recently updated
recently updated
newest added

I'm sending tihs set of changes that could be integrated (as a whole or cherry-picking specific changes) or used by others. It includes: 1. Add a new CPPACK_TESTS option to...

Hello, [cppack does not correctly unpack 32-bit MsgPack integers into 64-bit values](https://github.com/mikeloomisgg/cppack/blob/51655ec8f2b8fed84f685e3bcf8f226b139a263b/msgpack/include/msgpack/msgpack.hpp#L842). Please see a minimal reproducer below: ```c++ std::array test_num = {65537, 65537}; packer.clear(); packer.process(test_num); std::array x; unpacker.set_data(packer.vector().data(), packer.vector().size());...

Fixes #12 by adding missing `#include ` and `#include `

Thanks for putting this together. I had to add these lines to the top of `msgpack.hpp` to get it to compile: ``` #include #include ``` Am I missing something here?

Added wsjcpp - source package manager for c++

these are two typos that prevent the example from working properly. Also please approve the pull request for updating the unordered_map header file.

After adding and calling `msgpack.h` , compiling the code makes an error ``` /workspaces/call-exchange-service/third_party/msgpack/include/msgpack.h:969:7: error: no member named 'pack' in 'domain::exchange::contracts::registration' [clang-diagnostic-error] [build] obj.pack(unpacker); [build] ~~~ ^ ``` Is there...

Could you please add an example that will pack and unpack a derived class, similar to this class C (which is derived from class P). And include the proper `pack()`...

Is there a way to implement bitfield support in cppack natively, so that we can serialize bitstruct.