You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by cc...@apache.org on 2007/08/17 17:00:06 UTC

svn commit: r567061 - /incubator/qpid/trunk/qpid/cpp/src/qpid/cluster/Cluster.cpp

Author: cctrieloff
Date: Fri Aug 17 08:00:05 2007
New Revision: 567061

URL: http://svn.apache.org/viewvc?view=rev&rev=567061
Log:
fix for new heap model

Modified:
    incubator/qpid/trunk/qpid/cpp/src/qpid/cluster/Cluster.cpp

Modified: incubator/qpid/trunk/qpid/cpp/src/qpid/cluster/Cluster.cpp
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/src/qpid/cluster/Cluster.cpp?view=diff&rev=567061&r1=567060&r2=567061
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/src/qpid/cluster/Cluster.cpp (original)
+++ incubator/qpid/trunk/qpid/cpp/src/qpid/cluster/Cluster.cpp Fri Aug 17 08:00:05 2007
@@ -146,7 +146,7 @@
 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;
     {