diff options
author | madmaxoft <github@xoft.cz> | 2013-12-20 16:20:54 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-12-20 16:20:54 +0100 |
commit | b66722f73532e9c1d5df71f6a2f09b5da0163dee (patch) | |
tree | fc114a5e5d062f62e91fc1f3e019259157f0c4b0 /src/HTTPServer/HTTPConnection.h | |
parent | Attempt at fixing cChunkDef::Height signedness. (diff) | |
download | cuberite-b66722f73532e9c1d5df71f6a2f09b5da0163dee.tar cuberite-b66722f73532e9c1d5df71f6a2f09b5da0163dee.tar.gz cuberite-b66722f73532e9c1d5df71f6a2f09b5da0163dee.tar.bz2 cuberite-b66722f73532e9c1d5df71f6a2f09b5da0163dee.tar.lz cuberite-b66722f73532e9c1d5df71f6a2f09b5da0163dee.tar.xz cuberite-b66722f73532e9c1d5df71f6a2f09b5da0163dee.tar.zst cuberite-b66722f73532e9c1d5df71f6a2f09b5da0163dee.zip |
Diffstat (limited to 'src/HTTPServer/HTTPConnection.h')
-rw-r--r-- | src/HTTPServer/HTTPConnection.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/HTTPServer/HTTPConnection.h b/src/HTTPServer/HTTPConnection.h index 14603bb70..00941f2ae 100644 --- a/src/HTTPServer/HTTPConnection.h +++ b/src/HTTPServer/HTTPConnection.h @@ -39,7 +39,7 @@ public: } ; cHTTPConnection(cHTTPServer & a_HTTPServer); - ~cHTTPConnection(); + virtual ~cHTTPConnection(); /// Sends HTTP status code together with a_Reason (used for HTTP errors) void SendStatusAndReason(int a_StatusCode, const AString & a_Reason); |