diff options
author | Carl C. Trieloff <cctrieloff@apache.org> | 2007-08-17 15:00:05 +0000 |
---|---|---|
committer | Carl C. Trieloff <cctrieloff@apache.org> | 2007-08-17 15:00:05 +0000 |
commit | c534d81e9ef0b19a57dce9c115e6a436d9a82320 (patch) | |
tree | 90c92ec8f492db8a1d836a133c1d9469b980dabf /cpp/src | |
parent | 3fc22899cf5a4c5a26daef65d720c3bb1de3884d (diff) | |
download | qpid-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.cpp | 2 |
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; { |