Timothee Cour
Timothee Cour
could we have a `toString(msgpack::type)` method/function added? that would help with debugging
@redboltz Actually, could you please provide an example of how to get `type`? I'm using rpclib. ``` rpc::client c(...); auto temp = c.call("function", "bar"); auto t=temp.type; class clmdep_msgpack::v1::object_handle' has no...
ah ya sorry just saw that at the same time... to summarize remaining point:a `msgpack::type::toString()` method/function would help.
@sztomi thanks; however now I'm running into an issue wtih `msgpack::type` caused by having to include `msgpack.hpp` (it worked so long i only had to access rpclib but not when...
Is there any update on that? Dealing with circular references would make serialization a whole lot easier for client code
Here's a minimal test case: ``` d class A{B b;} class B{A a;} void main(){ auto a=new A; auto b=new B; a.b=b; b.a=a; auto data = pack(a);//CRASHES auto a2 =...
hacked the code to make it work; i can try to make a pull request if anyone is still interested
same error; this seems related to https://github.com/facebook/folly/issues/1027 here are the relevant code snippets from folly sources: ```h template struct F14LinkCheck { // The purpose of this method is to trigger...
somewhat related: https://github.com/github/markup/issues/1446
@Abscissa [sorry if it's only very mildly related] I'm wondering whether SDL would be a good fit for protobuf human readable format (see https://github.com/msoucy/dproto/issues/71#issuecomment-361011866 where i was trying to improve...