diff options
Diffstat (limited to 'cpp/src/qpid/framing/SendContent.cpp')
-rw-r--r-- | cpp/src/qpid/framing/SendContent.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/qpid/framing/SendContent.cpp b/cpp/src/qpid/framing/SendContent.cpp index 57ac58038b..85b9b995ad 100644 --- a/cpp/src/qpid/framing/SendContent.cpp +++ b/cpp/src/qpid/framing/SendContent.cpp @@ -51,7 +51,8 @@ void qpid::framing::SendContent::operator()(const AMQFrame& f) void qpid::framing::SendContent::sendFragment(const AMQContentBody& body, uint32_t offset, uint16_t size, bool first, bool last) const { - AMQFrame fragment(0, AMQContentBody(body.getData().substr(offset, size))); + AMQFrame fragment(in_place<AMQContentBody>( + body.getData().substr(offset, size))); setFlags(fragment, first, last); handler.handle(fragment); } |