mirror of
https://github.com/zeek/zeek.git
synced 2025-10-14 20:48:21 +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
|
@ -130,7 +130,7 @@ public:
|
|||
string file_id;
|
||||
|
||||
AnalysisStream();
|
||||
~AnalysisStream() override;
|
||||
~AnalysisStream() override = default;
|
||||
};
|
||||
|
||||
Manager::TableStream::TableStream()
|
||||
|
@ -177,8 +177,6 @@ Manager::TableStream::~TableStream()
|
|||
|
||||
Manager::AnalysisStream::AnalysisStream() : Manager::Stream::Stream(ANALYSIS_STREAM), file_id() { }
|
||||
|
||||
Manager::AnalysisStream::~AnalysisStream() { }
|
||||
|
||||
Manager::Manager() : plugin::ComponentManager<input::Component>("Input", "Reader")
|
||||
{
|
||||
end_of_data = event_registry->Register("Input::end_of_data");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue