Reduce memory footprint.

This commit is contained in:
Naoki INADA 2009-06-24 01:54:47 +09:00
parent 3fd28d0792
commit f61b282886
2 changed files with 7 additions and 6 deletions

View file

@ -43,10 +43,13 @@
msgpack_unpack_struct_decl(_stack) {
msgpack_unpack_object obj;
size_t curr;
size_t count;
unsigned int ct;
msgpack_unpack_object map_key;
union {
size_t curr;
msgpack_unpack_object map_key;
};
};
msgpack_unpack_struct_decl(_context) {