Merge pull request #565 from mongi3/patch-1

Minor fix to Quickstart (broke with 2.0)
This commit is contained in:
Takatoshi Kondo 2017-02-13 15:05:13 +09:00 committed by GitHub
commit b4fe698777

View File

@ -78,7 +78,7 @@ int main(void) {
// now starts streaming deserialization.
msgpack::object_handle oh;
while(pac.next(&oh)) {
while(pac.next(oh)) {
std::cout << oh.get() << std::endl;
}