mirror of
https://github.com/boostorg/beast.git
synced 2025-07-31 21:34:46 +02:00
serializer::next replaces serializer::get (API Change):
Actions Required: * Use serializer::next instead of serializer::get at call sites
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user