mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 10:08:20 +00:00
Merge remote-tracking branch 'origin/topic/timw/override'
* origin/topic/timw/override: Mark input/output message classes as final, since nothing should be inheriting from them Add missing override specifier to a number of methods, remove virtual from some as well Add override specifier to Configure() method in almost all of the internal plugins
This commit is contained in:
commit
d18f2f8f76
76 changed files with 142 additions and 139 deletions
|
@ -176,7 +176,7 @@ void HTTP_Entity::Deliver(int len, const char* data, bool 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