i want to pack a string that is larger than 32 characters but the packer returns everytime 'da'.
When i use a string that contains less than 32 characters all works fine! But a larger string return only the 'da'
my code looks like follow:
msgpack::sbuffer sbuffer;
msgpack::packer<msgpack::sbuffer> packer(&sbuffer);
packer.pack(string("hello this is a string larger than 32 bytes"));
also tried this:
packer.pack_raw(43);
packer.pack_raw_body("hello this is a string larger than 32 bytes", 43);
In both cases return:
'da'
any idea?
thanks for help
edit: I fixed the problem... i reinstalled it with cmake and now it works. Before i did it with ./configure