InsightSoftwareConsortium / ITK

Insight Toolkit (ITK) -- Official Repository. ITK builds on a proven, spatially-oriented architecture for processing, segmentation, and registration of scientific images in two, three, or more dimensions.
https://itk.org
Apache License 2.0
1.38k stars 661 forks source link

STYLE: Use unique_ptr for MRIBiasEnergyFunction m_InternalEnergyFunction #4547

Closed N-Dekker closed 3 months ago

N-Dekker commented 3 months ago

Following C++ Core Guidelines, "Use unique_ptr or shared_ptr to avoid forgetting to delete objects created using new"

Also defaulted the destructor of MRIBiasEnergyFunction.