mirror of
https://github.com/zeek/zeek.git
synced 2025-10-17 05:58: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
|
@ -6,7 +6,7 @@
|
|||
|
||||
namespace analyzer { namespace dhcp {
|
||||
|
||||
class DHCP_Analyzer : public analyzer::Analyzer {
|
||||
class DHCP_Analyzer final : public analyzer::Analyzer {
|
||||
public:
|
||||
explicit DHCP_Analyzer(Connection* conn);
|
||||
~DHCP_Analyzer() override;
|
||||
|
@ -22,4 +22,4 @@ protected:
|
|||
binpac::DHCP::DHCP_Conn* interp;
|
||||
};
|
||||
|
||||
} } // namespace analyzer::*
|
||||
} } // namespace analyzer::*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue