diff options
author | Alan Conway <aconway@apache.org> | 2007-03-27 21:23:40 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2007-03-27 21:23:40 +0000 |
commit | e919b8ae21a9a92bdea636c7c5de34bda1c29a3d (patch) | |
tree | a7fe9e99a591c67828e050f50993614487a3bb6e /cpp/tests/InProcessBroker.h | |
parent | b35d8895e662990245385f416163c669391adad3 (diff) | |
download | qpid-python-e919b8ae21a9a92bdea636c7c5de34bda1c29a3d.tar.gz |
* cpp/tests/BrokerChannelTest.cpp: Fix leak.
* cpp/lib/broker/Connection.h: signature fix, pass const& instead of *.
* cpp/lib/client/IncomingMessage.cpp: Correct error codes.
* cpp/lib/broker/Reference.cpp: Fix TODO.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@523085 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/tests/InProcessBroker.h')
-rw-r--r-- | cpp/tests/InProcessBroker.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/tests/InProcessBroker.h b/cpp/tests/InProcessBroker.h index 833b821d11..e2b426347b 100644 --- a/cpp/tests/InProcessBroker.h +++ b/cpp/tests/InProcessBroker.h @@ -85,7 +85,7 @@ class InProcessBroker : public client::Connector { ~InProcessBroker() { broker->shutdown(); } void connect(const std::string& /*host*/, int /*port*/) {} - void init() { brokerConnection.initiated(&protocolInit); } + void init() { brokerConnection.initiated(protocolInit); } void close() {} /** Client's input handler. */ |