Skip to content

SiSPSeededTrackFinderData: Avoid undefined behavior.

Calling the destructor explicitly in clearPoolList is unneeded and results in undefined behavior, since we end up assigning to an object that's not initialized. Assignment moves the pool as well, so that's sufficient.

Fixes ubsan warnings seen in the ActsMonitoring test.

Merge request reports