mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 09:08:20 +00:00
Add missing override specifier to a number of methods, remove virtual from some as well
This commit is contained in:
parent
6aaabceed2
commit
186005133b
9 changed files with 42 additions and 43 deletions
|
@ -176,7 +176,7 @@ 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 void DeliverStream(int len, const u_char* data, bool orig)
|
||||
void DeliverStream(int len, const u_char* data, bool orig) override
|
||||
{
|
||||
entity->DeliverBodyClear(len, (char*) data, false);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue