- May 27, 2016
-
-
Takatoshi Kondo authored
Updated version number.
-
- May 26, 2016
-
-
Takatoshi Kondo authored
-
Takatoshi Kondo authored
-
- May 18, 2016
-
-
Takatoshi Kondo authored
Backported #441 to cpp-1.4.
-
Takatoshi Kondo authored
Fixed a pointer operation problem at msgpack::zone::chunk_list::clear(). It was only happened on C++03.
-
- Mar 06, 2016
-
-
Takatoshi Kondo authored
Updated the version to 1.4.1.
-
Takatoshi Kondo authored
-
Takatoshi Kondo authored
Backported #436 to version 1.4.0.
-
Takatoshi Kondo authored
Backported #435 to version 1.4.0.
-
Takatoshi Kondo authored
-
Takatoshi Kondo authored
-
- Feb 20, 2016
-
-
Takatoshi Kondo authored
Backported #426 to version 1.4.0.
-
Takatoshi Kondo authored
Backported #423 to version 1.4.0.
-
Takatoshi Kondo authored
-
Takatoshi Kondo authored
-
- Jan 22, 2016
-
-
Takatoshi Kondo authored
Release version 1.4.0.
-
Takatoshi Kondo authored
Fixed markdown layouts.
-
- Jan 21, 2016
-
-
Takatoshi Kondo authored
Fixed #399
-
Takatoshi Kondo authored
If MSGPACK_DISABLE_LEGACY_CONVERT is defined, msgpack::object::convert(T*) is removed. Added MSGPACK_DISABLE_LEGACY_CONVERT to build system and documents. Please define MSGPACK_DISABLE_LEGACY_CONVERT and update your code as follows: Replace int i; obj.convert(&i); // Removed pointer version with int i; obj.convert(i); // Reference version
-
Takatoshi Kondo authored
Added MSGPACK_DISABLE_LEGACY_NIL to build system and documents.
-
Takatoshi Kondo authored
-
Takatoshi Kondo authored
Fixed existing code compile error problem.
-
Takatoshi Kondo authored
Changed macro name from MSGPACK_USE_LEGACY_NIL to MSGPACK_DISABLE_LEGACY_NIL. msgpack-c shouldn't make compile error on existing codes by default without major version up. So if you want to disable msgpack::type::nil, you need to define MSGPACK_DISABLE_LEGACY_NIL macro.
-
- Jan 20, 2016
-
-
Takatoshi Kondo authored
Fixed -Wshadow warning.
-
Takatoshi Kondo authored
Replaced nil with nil_t.
-
- Jan 19, 2016
-
-
Takatoshi Kondo authored
Added unpack, pack, object, and object_handle documentation.
-
- Jan 18, 2016
-
-
Takatoshi Kondo authored
Added nil typedef for existing codes.
-
Takatoshi Kondo authored
-
Takatoshi Kondo authored
-
- Jan 15, 2016
-
-
Takatoshi Kondo authored
Fixed an incompatible type warning
-
Takatoshi Kondo authored
-
-
Takatoshi Kondo authored
Fixed #395
-
Takatoshi Kondo authored
Check whether MSGPACK_ENDIAN_LITTLE_BYTE is true, not defined.
-
James McCoy authored
msgpack/predef/other/endian.h always defines both MSGPACK_ENDIAN_LITTLE_BYTE and MSGPACK_ENDIAN_BIG_BYTE, but they're defined to a true or false value depending on whether the system is little/big endian. Fix this condition to check the truthiness rather than whether it is defined, like the other locations this macro is checked. Closes #403 Signed-off-by:
James McCoy <jamessan@jamessan.com>
-
- Jan 13, 2016
-
-
Takatoshi Kondo authored
libmsgpack.[a|so] is the library file for C++. libmsgpackc.[a|so] is the library file for C. Since version 1.0.0, the C++ parts of msgpack-c is a header only library. So libmsgpack.* shouldn't be generated. On the autotools building environment, removed libmsgpack.* generation. On the cmake building environment, replaced libmsgpack.* with libmsgpackc.* and set so-version to 2.0.0.
-
Takatoshi Kondo authored
Fixed #392
-
Takatoshi Kondo authored
Fixed #396.
-
Takatoshi Kondo authored
Avoided the warning when `char` does not have sign using template lazy instantiation. Removed redundant `inline`.
-
Takatoshi Kondo authored
Add CI testing of signed/unsigned char differences
-