Skip to content

Commit

Permalink
fix coverity issue 1147106 (initialize), re #11061
Browse files Browse the repository at this point in the history
  • Loading branch information
FedeMPouzols committed Feb 15, 2015
1 parent 28db620 commit d21be66
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Code/Mantid/Framework/DataHandling/src/LoadAscii2.cpp
Expand Up @@ -25,7 +25,10 @@ using namespace Kernel;
using namespace API;

/// Empty constructor
LoadAscii2::LoadAscii2() : m_columnSep(), m_separatorIndex() {}
LoadAscii2::LoadAscii2() : m_columnSep(), m_separatorIndex(), m_comment(),
m_baseCols(0), m_specNo(0), m_lastBins(0), m_curBins(0), m_spectraStart(),
m_spectrumIDcount(0), m_lineNo(0), m_spectra(), m_curSpectra(NULL) {
}

/**
* Return the confidence with with this algorithm can load the file
Expand Down

0 comments on commit d21be66

Please sign in to comment.