Add override specifier to Configure() method in almost all of the internal plugins

This commit is contained in:
Tim Wojtulewicz 2020-03-26 15:23:42 -07:00
parent 3c470ffe13
commit 6aaabceed2
65 changed files with 66 additions and 70 deletions

View file

@ -10,7 +10,7 @@ namespace Zeek_SSL {
class Plugin : public plugin::Plugin {
public:
plugin::Configuration Configure()
plugin::Configuration Configure() override
{
AddComponent(new ::analyzer::Component("SSL", ::analyzer::ssl::SSL_Analyzer::Instantiate));
AddComponent(new ::analyzer::Component("DTLS", ::analyzer::dtls::DTLS_Analyzer::Instantiate));
@ -24,4 +24,3 @@ public:
}
}