Skip to content
Snippets Groups Projects

21.9 warning fix

Merged Thomas Strebler requested to merge tstreble/athena:21.9_warning_fix into 21.9
All threads resolved!
1 file
+ 6
3
Compare changes
  • Side-by-side
  • Inline
@@ -23,9 +23,12 @@ namespace Trk
MvfFitInfo::~MvfFitInfo()
{
if (m_constraintVertex!=0) delete m_constraintVertex; m_constraintVertex=0;
if (m_seedVertex!=0) delete m_seedVertex; m_seedVertex=0;
if (m_linearizationVertex!=0) delete m_linearizationVertex; m_linearizationVertex=0;
if (m_constraintVertex!=0) delete m_constraintVertex;
m_constraintVertex=0;
if (m_seedVertex!=0) delete m_seedVertex;
m_seedVertex=0;
if (m_linearizationVertex!=0) delete m_linearizationVertex;
m_linearizationVertex=0;
}//end of destructor
MvfFitInfo::MvfFitInfo(const MvfFitInfo& rhs):
Loading