From e65b0086a2924ff04640b1350393a816249d01b3 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Thu, 17 Jul 2008 00:03:50 +0000 Subject: Cluster: shadow connections, fix lifecycle & valgrind issues. - tests/ForkedBroker: improved broker forking, exec full qpidd. - Plugin::addFinalizer - more flexible way to shutdown plugins. - Reworked cluster extension points using boost::function. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@677471 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/framing/Handler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpp/src/qpid/framing') diff --git a/cpp/src/qpid/framing/Handler.h b/cpp/src/qpid/framing/Handler.h index a2a8ee7bfa..e07a803e17 100644 --- a/cpp/src/qpid/framing/Handler.h +++ b/cpp/src/qpid/framing/Handler.h @@ -66,7 +66,7 @@ struct Handler { MemFunRef(X& x, Handler* next=0) : Handler(next), target(&x) {} void handle(T t) { (target->*F)(t); } - /** Allow calling with -> syntax, like a qpid::HandlerChain */ + /** Allow calling with -> syntax */ MemFunRef* operator->() { return this; } private: -- cgit v1.2.1