Skip to content
Snippets Groups Projects
Commit efcd64bd authored by Jan David Mol's avatar Jan David Mol
Browse files

bug 1303: deallocate pipeline outputs in PipelineOutputSet

parent 896cc41c
No related branches found
No related tags found
No related merge requests found
...@@ -68,6 +68,7 @@ class PipelineOutputSet ...@@ -68,6 +68,7 @@ class PipelineOutputSet
{ {
public: public:
PipelineOutputSet( const Parset &ps, Allocator &allocator = heapAllocator ); PipelineOutputSet( const Parset &ps, Allocator &allocator = heapAllocator );
virtual ~PipelineOutputSet();
size_t size() const { return itsOutputs.size(); } size_t size() const { return itsOutputs.size(); }
PipelineOutput &operator[]( unsigned index ) { return *(itsOutputs[index]); } PipelineOutput &operator[]( unsigned index ) { return *(itsOutputs[index]); }
...@@ -172,6 +173,13 @@ inline PipelineOutputSet::PipelineOutputSet( const Parset &ps, Allocator &alloca ...@@ -172,6 +173,13 @@ inline PipelineOutputSet::PipelineOutputSet( const Parset &ps, Allocator &alloca
} }
} }
inline PipelineOutputSet::~PipelineOutputSet()
{
for( unsigned i = 0; i < itsOutputs.size(); i++ ) {
delete itsOutputs[i];
}
}
} // namespace RTCP } // namespace RTCP
} // namespace LOFAR } // namespace LOFAR
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment