mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 10:08:20 +00:00
Mark the majority of the analyzer classes as final, where appropriate.
Most of these came from use of the -Wsuggest-final-types flag for gcc.
This commit is contained in:
parent
4035ec7760
commit
485d9d5458
46 changed files with 72 additions and 80 deletions
|
@ -10,7 +10,7 @@ namespace binpac { namespace TLSHandshake { class Handshake_Conn; } }
|
|||
|
||||
namespace analyzer { namespace ssl {
|
||||
|
||||
class SSL_Analyzer : public tcp::TCP_ApplicationAnalyzer {
|
||||
class SSL_Analyzer final : public tcp::TCP_ApplicationAnalyzer {
|
||||
public:
|
||||
explicit SSL_Analyzer(Connection* conn);
|
||||
~SSL_Analyzer() override;
|
||||
|
@ -38,4 +38,4 @@ protected:
|
|||
|
||||
};
|
||||
|
||||
} } // namespace analyzer::*
|
||||
} } // namespace analyzer::*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue