Skip to content

Commit

Permalink
Merge pull request #2027 from SCIInstitute/fix_2024
Browse files Browse the repository at this point in the history
Fix #2024 by fixing uninitialized alignment_type member
  • Loading branch information
akenmorris committed Mar 24, 2023
2 parents 91a2287 + 2901c46 commit cd34447
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Libs/Analyze/Particles.h
Expand Up @@ -69,7 +69,7 @@ class Particles {

vtkSmartPointer<vtkTransform> transform_;
std::vector<vtkSmartPointer<vtkTransform>> procrustes_transforms_;
int alignment_type_;
int alignment_type_ = -1;

};
} // namespace shapeworks

0 comments on commit cd34447

Please sign in to comment.