From 634d7661ec1d6d202685cafb958b5a55dc2498aa Mon Sep 17 00:00:00 2001 From: deva Date: Mon, 14 Feb 2011 14:31:06 +0000 Subject: Added missing virtual constructor. --- server/src/connection.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/src/connection.h b/server/src/connection.h index ec18d00..b7d17f4 100644 --- a/server/src/connection.h +++ b/server/src/connection.h @@ -34,6 +34,8 @@ class Connection { public: + virtual ~Connection() {} + virtual bool handle(const char *data, size_t size) = 0; virtual void getReply(Httpd::Reply &reply) = 0; }; -- cgit v1.2.3