From a8da8cb8e262f7f7e682b5bca4f7a5d9376ca2c0 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 10 Feb 2020 16:26:19 +0100 Subject: [PATCH] analyzer/protocol/http: remove unnecessary empty destructor --- src/analyzer/protocol/http/HTTP.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/analyzer/protocol/http/HTTP.cc b/src/analyzer/protocol/http/HTTP.cc index 83349d100a..56359a177e 100644 --- a/src/analyzer/protocol/http/HTTP.cc +++ b/src/analyzer/protocol/http/HTTP.cc @@ -176,7 +176,6 @@ void HTTP_Entity::Deliver(int len, const char* data, int trailing_CRLF) class HTTP_Entity::UncompressedOutput : public analyzer::OutputHandler { public: UncompressedOutput(HTTP_Entity* e) { entity = e; } - virtual ~UncompressedOutput() { } virtual void DeliverStream(int len, const u_char* data, bool orig) { entity->DeliverBodyClear(len, (char*) data, false);