mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 17:18:20 +00:00
Replace empty destructor bodies with =default definitions
This commit is contained in:
parent
1991b87a07
commit
90d0bc64fa
66 changed files with 45 additions and 124 deletions
|
@ -33,7 +33,7 @@ public:
|
|||
/**
|
||||
* Destructor.
|
||||
*/
|
||||
~Component() override;
|
||||
~Component() override = default;
|
||||
|
||||
protected:
|
||||
/**
|
||||
|
@ -84,7 +84,7 @@ public:
|
|||
/**
|
||||
* Destructor.
|
||||
*/
|
||||
~PktSrcComponent() override;
|
||||
~PktSrcComponent() override = default;
|
||||
|
||||
/**
|
||||
* Returns the prefix(es) passed to the constructor.
|
||||
|
@ -145,7 +145,7 @@ public:
|
|||
/**
|
||||
* Destructor.
|
||||
*/
|
||||
~PktDumperComponent() override;
|
||||
~PktDumperComponent() override = default;
|
||||
|
||||
/**
|
||||
* Returns the prefix(es) passed to the constructor.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue