fix undefined vtable references

This commit is contained in:
blastmaster 2014-01-23 02:16:46 +01:00
parent 727685f27e
commit b035f4b923
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
class StaticFileHandler class StaticFileHandler
{ {
public: public:
virtual ~StaticFileHandler(); virtual ~StaticFileHandler() {};
virtual int answer_pathreq(const char * const path,struct mg_connection *conn); virtual int answer_pathreq(const char * const path,struct mg_connection *conn) {};
}; };