serializer::next replaces serializer::get (API Change):

Actions Required:

* Use serializer::next instead of serializer::get at call sites
This commit is contained in:
Vinnie Falco
2017-07-04 01:17:56 -07:00
parent b0e52dd246
commit f5ae60613f
7 changed files with 23 additions and 20 deletions

View File

@@ -649,7 +649,7 @@ write_ostream(
// In C++14 we could use a generic lambda but since we want
// to require only C++11, the lambda is written out by hand.
// This function call retrieves the next serialized buffers.
sr.get(ec, lambda);
sr.next(ec, lambda);
if(ec)
return;
}