diff options
Diffstat (limited to 'cpp/src/qpid/cluster')
-rw-r--r-- | cpp/src/qpid/cluster/Connection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/cluster/Connection.cpp b/cpp/src/qpid/cluster/Connection.cpp index a255acfc1f..3988abd491 100644 --- a/cpp/src/qpid/cluster/Connection.cpp +++ b/cpp/src/qpid/cluster/Connection.cpp @@ -109,7 +109,7 @@ void Connection::received(framing::AMQFrame& f) { QPID_LOG(debug, cluster << " inserting connection " << *this); cluster.insert(boost::intrusive_ptr<Connection>(this)); } - AMQFrame ok(in_place<ConnectionCloseOkBody>()); + AMQFrame ok((ConnectionCloseOkBody())); connection.getOutput().send(ok); output.setOutputHandler(discardHandler); catchUp = false; |