Modified zone* to zone&.

This commit is contained in:
Takatoshi Kondo
2013-09-04 16:00:36 +09:00
parent 72b3064a67
commit bad3801eae
5 changed files with 44 additions and 43 deletions

View File

@@ -31,7 +31,7 @@ void test_map_pack_unpack() {
std::cout << "Start unpacking..." << std::endl;
{
boost::timer::cpu_timer timer;
msgpack::unpack(str.data(), str.size(), NULL, &mempool, deserialized);
msgpack::unpack(str.data(), str.size(), NULL, mempool, deserialized);
std::string result = timer.format();
std::cout << result << std::endl;
}