mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-11-09 15:53:58 +01:00
Fixed #465
Added C-Style array support.
Existing mapping:
convert:
pack:
char[N] => STR
const char[N] => STR
object:
char[N] => STR (v1 only)
const char[N] => STR (v1 only)
object_with_zone:
char[N] => STR
const char[N] => STR
Additional mapping:
convert:
STR => char[N]
ARRAY => T[N]
pack:
T[N] => ARRAY
const T[N] => ARRAY
object:
object_with_zone:
T[N] => ARRAY
const T[N] => ARRAY
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
#include "cpp_config.hpp"
|
||||
#include "adaptor/array_ref.hpp"
|
||||
#include "adaptor/bool.hpp"
|
||||
#include "adaptor/carray.hpp"
|
||||
#include "adaptor/char_ptr.hpp"
|
||||
#include "adaptor/deque.hpp"
|
||||
#include "adaptor/ext.hpp"
|
||||
|
||||
Reference in New Issue
Block a user