mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-04-28 02:33:31 +02:00

Removed zone::create and zone::destroy. We can use zone as follows: zone z; // on stack zone* z = new zone; // on heap Fixed a resource leak when zone::push_finalizer(msgpack::unique_ptr<T>) is called.