mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38: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
|
@ -106,8 +106,8 @@ protected:
|
|||
class BinarySerializationFormat final : public SerializationFormat
|
||||
{
|
||||
public:
|
||||
BinarySerializationFormat();
|
||||
~BinarySerializationFormat() override;
|
||||
BinarySerializationFormat() = default;
|
||||
~BinarySerializationFormat() override = default;
|
||||
|
||||
bool Read(int* v, const char* tag) override;
|
||||
bool Read(uint16_t* v, const char* tag) override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue