diff options
author | Tycho Bickerstaff <work.tycho@gmail.com> | 2013-12-21 16:38:37 +0100 |
---|---|---|
committer | Tycho Bickerstaff <work.tycho@gmail.com> | 2013-12-21 16:38:37 +0100 |
commit | 9f41761e8ea1eff8980af4dceb7137471538298b (patch) | |
tree | 55c3e70d3a1c2582483f490921a5153c49a260cc /src/WebAdmin.h | |
parent | Piston is now warnings clean (diff) | |
download | cuberite-9f41761e8ea1eff8980af4dceb7137471538298b.tar cuberite-9f41761e8ea1eff8980af4dceb7137471538298b.tar.gz cuberite-9f41761e8ea1eff8980af4dceb7137471538298b.tar.bz2 cuberite-9f41761e8ea1eff8980af4dceb7137471538298b.tar.lz cuberite-9f41761e8ea1eff8980af4dceb7137471538298b.tar.xz cuberite-9f41761e8ea1eff8980af4dceb7137471538298b.tar.zst cuberite-9f41761e8ea1eff8980af4dceb7137471538298b.zip |
Diffstat (limited to 'src/WebAdmin.h')
-rw-r--r-- | src/WebAdmin.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/WebAdmin.h b/src/WebAdmin.h index c629d44ff..0f61d7e38 100644 --- a/src/WebAdmin.h +++ b/src/WebAdmin.h @@ -105,7 +105,7 @@ public: cWebAdmin(void); - ~cWebAdmin(); + virtual ~cWebAdmin(); /// Initializes the object. Returns true if successfully initialized and ready to start bool Init(void); @@ -166,9 +166,9 @@ protected: virtual void OnBody(const char * a_Data, int a_Size) override; // cHTTPFormParser::cCallbacks overrides. Files are ignored: - virtual void OnFileStart(cHTTPFormParser & a_Parser, const AString & a_FileName) override {} - virtual void OnFileData(cHTTPFormParser & a_Parser, const char * a_Data, int a_Size) override {} - virtual void OnFileEnd(cHTTPFormParser & a_Parser) override {} + virtual void OnFileStart(cHTTPFormParser &, const AString & /*a_FileName*/) override {} + virtual void OnFileData(cHTTPFormParser &, const char * /*a_Data*/, int /*a_Size*/) override {} + virtual void OnFileEnd(cHTTPFormParser &) override {} } ; |