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

@ -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");