Scott Prager
|
6fab3594a2
|
Add inline for ODR compliance.
|
2014-07-24 15:04:33 -04:00 |
|
Takatoshi Kondo
|
09325ed846
|
Re-implemented msgpack::unpacker's move operations.
I refered to the following article and comments.
http://scottmeyers.blogspot.jp/2014/06/the-drawbacks-of-implementing-move.html
msgpack::detail::context back to copiable.
msgpack::detail::context doen't have any resource ownership, so there is
no strong reason to avoid copy.
|
2014-07-24 10:38:24 +09:00 |
|
Takatoshi Kondo
|
ecdeec9948
|
Fixed the move assign operator implementation.
|
2014-07-24 07:41:23 +09:00 |
|
Takatoshi Kondo
|
f11a811114
|
Added a move constructor and a move assign operator for unpacker and context.
https://github.com/msgpack/msgpack-c/issues/96
|
2014-07-23 21:32:45 +09:00 |
|
Takatoshi Kondo
|
0380215982
|
Fixed https://github.com/msgpack/msgpack-c/issues/88
Added examples for the following updated functions:
msgpack_unpack_return msgpack_unpacker_next(msgpack_unpacker* mpac, msgpack_unpacked* result);
msgpack_unpack_return
msgpack_unpack_next(msgpack_unpacked* result,
const char* data, size_t len, size_t* off);
|
2014-07-13 09:35:58 +09:00 |
|
Takatoshi Kondo
|
0e48f65a4b
|
Fixed https://github.com/msgpack/msgpack-c/issues/94
Added a private copy assign operator to unpacker.
|
2014-07-12 00:41:33 +09:00 |
|
Takatoshi Kondo
|
aa79fc2ff4
|
Updated versions.
|
2014-07-12 00:33:06 +09:00 |
|
Takatoshi Kondo
|
b0df21295c
|
Untabified.
Adjust line break positions.
|
2014-07-12 00:17:31 +09:00 |
|
Takatoshi Kondo
|
0889e6117e
|
Renamed member variables name.
|
2014-07-11 23:37:43 +09:00 |
|
Takatoshi Kondo
|
212f025f00
|
Supported the C++11's enum class.
|
2014-07-08 19:31:02 +09:00 |
|
Takatoshi Kondo
|
f6a5402194
|
Supported the C++11 tuple.
|
2014-07-08 19:18:43 +09:00 |
|
Takatoshi Kondo
|
6a349d0b28
|
Fixed zero size string in the array problem.
|
2014-07-07 16:31:29 +09:00 |
|
Takatoshi Kondo
|
dac5c60608
|
Replaced bit shift with memcpy on load.
|
2014-07-07 16:31:29 +09:00 |
|
Takatoshi Kondo
|
bc33317b7e
|
Reorganized tree.
|
2014-07-07 16:31:29 +09:00 |
|