Takatoshi Kondo
Takatoshi Kondo
https://github.com/msgpack/msgpack-c/wiki/v2_0_cpp_adaptor#non-intrusive-approach This is a document how to write non-intrusive adaptor. You can use that way.
Yes, it seems that CI script needs to update. Unfortunately, I don't have much time. @ygj6 , if you have time, could you investigate CI error?
@sztomi , std::tuple is mapped to ARRAY. ARRAY requires msgpack::zone. See https://github.com/msgpack/msgpack-c/wiki/v2_0_cpp_object So, you can use msgpack::object with msgpack::zone as follows: https://wandbox.org/permlink/a4V243pj4WYDAuyX I think that compile error is better than...
I think that your code should work. See https://wandbox.org/permlink/56ZuoHJ1Nb7JRK3i
I don't understand the code above. Could you show me a minimal and complete code that reproduces the error? If ```cpp #include #include #include int main() { msgpack::object obj(std::make_tuple(2, "hello",...
Hi @csstup, thank you for reporting the issue. In order to solve this problem, I should recognize the compilers and set appropriate compiler specific options as follows: http://stackoverflow.com/questions/2368811/how-to-set-warning-level-in-cmake This is...
No. https://github.com/msgpack/msgpack-c/blob/master/CHANGELOG.md has some information about boost type support.
I reproduced the issue. The same target file (function?) is treated well on html output. It only happenes on man output. I greped "Generating" your log. I couldn't find siginificant...
No, I don't know how to fix it. If you post a PR to fix it, it is helpful.
You need to use `MSGPACK_BASE` to serialize base classes See https://github.com/msgpack/msgpack-c/wiki/v2_0_cpp_adaptor#intrusive-approach