Replace empty destructor bodies with =default definitions

This commit is contained in:
Tim Wojtulewicz 2023-07-06 14:01:11 -07:00
parent 1991b87a07
commit 90d0bc64fa
66 changed files with 45 additions and 124 deletions

View file

@ -91,7 +91,7 @@ class Contents_NCP_Analyzer : public analyzer::tcp::TCP_SupportAnalyzer
{
public:
Contents_NCP_Analyzer(Connection* conn, bool orig, detail::NCP_Session* session);
~Contents_NCP_Analyzer() override;
~Contents_NCP_Analyzer() override = default;
protected:
void DeliverStream(int len, const u_char* data, bool orig) override;