From f6c5c0d464efd4a19af54cbbb68a2ae315fbfd96 Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Thu, 30 Aug 2007 13:23:40 +0000 Subject: * configure.ac: Disabled cluster build temporarily while fixing build problems. * src/qpid/framing/Handler.h: Add missing default constructor. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@571161 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/framing/Handler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpp/src/qpid') diff --git a/cpp/src/qpid/framing/Handler.h b/cpp/src/qpid/framing/Handler.h index be49570f9b..3129e7d60e 100644 --- a/cpp/src/qpid/framing/Handler.h +++ b/cpp/src/qpid/framing/Handler.h @@ -47,7 +47,7 @@ struct Handler { * linked list of handlers. */ struct Chain : public Handler { - Chain(Handler* first) : Handler(first) {} + Chain(Handler* first=0) : Handler(first) {} void operator=(Handler* h) { next = h; } void handle(T t) { (*next)(t); } // TODO aconway 2007-08-29: chain modifier ops here. -- cgit v1.2.1