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 | 0b426037a11ee06903f2b3a6850d5a7521982c45 (patch) | |
| tree | bc072fbc804be0b98d773b02a8e860c8efb88866 /qpid/cpp/src | |
| parent | 20a9feffbda0d414726f426cc5c550eeb856928a (diff) | |
| download | qpid-python-0b426037a11ee06903f2b3a6850d5a7521982c45.tar.gz | |
fix for new heap model
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@567061 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
| -rw-r--r-- | qpid/cpp/src/qpid/cluster/Cluster.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/cluster/Cluster.cpp b/qpid/cpp/src/qpid/cluster/Cluster.cpp index d9f1679fdf..e80912a2ea 100644 --- a/qpid/cpp/src/qpid/cluster/Cluster.cpp +++ b/qpid/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; { |
