From b035f4b9233a7a70673edd61b7320781586d278c Mon Sep 17 00:00:00 2001 From: blastmaster Date: Thu, 23 Jan 2014 02:16:46 +0100 Subject: [PATCH] fix undefined vtable references --- src/StaticFileHandler.H | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/StaticFileHandler.H b/src/StaticFileHandler.H index 7b2c9ee..207666d 100644 --- a/src/StaticFileHandler.H +++ b/src/StaticFileHandler.H @@ -4,7 +4,7 @@ class StaticFileHandler { public: - virtual ~StaticFileHandler(); - virtual int answer_pathreq(const char * const path,struct mg_connection *conn); + virtual ~StaticFileHandler() {}; + virtual int answer_pathreq(const char * const path,struct mg_connection *conn) {}; };