SuperElastix / elastix

Official elastix repository
http://elastix.dev
Apache License 2.0
449 stars 110 forks source link

Remove assignments to data members from inside constructors of metrics #1075

Closed N-Dekker closed 3 months ago

N-Dekker commented 3 months ago

Moved the values of those data members that were originally assigned to into their default member initializers.

Following C++ Core Guidelines, "Prefer initialization to assignment in constructors"