Results 358 comments of Takatoshi Kondo

I guess that as long as the coverage service requires to provide github secret, the problem isn't solved.

@sztomi , thank you for reporting the issue. Unfortunately, there is no way to do that, so far. Here is unpacker's internal mechanism: http://www.slideshare.net/taka111/msgpackc The unpacker's internal buffer expansion is...

> Thanks. How does the new parser perform in comparison to the old one? The performance depends on Spirit.X3 parser. I wrote simple comparison program. It's not a stream unpacking....

This is the implementation of the new parser: https://github.com/msgpack/msgpack-c/blob/master/include/msgpack/v2/x3_parse.hpp

I sent the pull request for msgpack-java. https://github.com/msgpack/msgpack-java/pull/65

I sent the pull request for msgpack-c. https://github.com/msgpack/msgpack-c/pull/54

Are you using version 2.1.0? If it does, `MSGPACK_OBJECT_FLOAT32` is defined at https://github.com/msgpack/msgpack-c/blob/cpp-2.1.0/include/msgpack/object.h#L32 I think that include path might be wrong. Could you check your include path? Perhaps older version...

Hi, msgpack-c contains C++ part and C part. C++ part has class serializer. I guess that you are talking about C part. You suggested that some code generator. I considered...

In C, there is no function to access `msgpack_object`. You can access the structure and union directly. See https://github.com/msgpack/msgpack-c/wiki/v2_0_c_overview#object Before you access to the union, check type, and then access...

> Internally I have this implemented using std::vector, and I am hacking into the message a format basically equivalent to msgpack-cli's known-subtype polymorphism. I use typeid(T).name() as the type indicator,...