AMQP::Envelope copy constructor missing base class constructor call

This commit is contained in:
Nikita Kniazev 2015-09-28 12:56:52 +03:00
parent 12af6e854a
commit ca522a32a5
1 changed files with 1 additions and 0 deletions

View File

@ -68,6 +68,7 @@ public:
* @param envelope the envelope to copy
*/
Envelope(const Envelope &envelope) :
MetaData(envelope),
_str(envelope._body, envelope._bodySize),
_body(_str.data()),
_bodySize(_str.size())