summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorCarl C. Trieloff <cctrieloff@apache.org>2007-08-17 15:00:05 +0000
committerCarl C. Trieloff <cctrieloff@apache.org>2007-08-17 15:00:05 +0000
commitc534d81e9ef0b19a57dce9c115e6a436d9a82320 (patch)
tree90c92ec8f492db8a1d836a133c1d9469b980dabf /cpp/src
parent3fc22899cf5a4c5a26daef65d720c3bb1de3884d (diff)
downloadqpid-python-c534d81e9ef0b19a57dce9c115e6a436d9a82320.tar.gz
fix for new heap model
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@567061 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/qpid/cluster/Cluster.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/cluster/Cluster.cpp b/cpp/src/qpid/cluster/Cluster.cpp
index d9f1679fdf..e80912a2ea 100644
--- a/cpp/src/qpid/cluster/Cluster.cpp
+++ b/cpp/src/qpid/cluster/Cluster.cpp
@@ -146,7 +146,7 @@ bool Cluster::wait(boost::function<bool(const Cluster&)> predicate,
void Cluster::handleClusterFrame(Id from, AMQFrame& frame) {
// TODO aconway 2007-06-20: use visitor pattern here.
ClusterNotifyBody* notifyIn=
- dynamic_cast<ClusterNotifyBody*>(frame.getBody().get());
+ dynamic_cast<ClusterNotifyBody*>(frame.getBody());
assert(notifyIn);
MemberList list;
{