Skip to content

Commit

Permalink
fix uninit coverity issue 1075395, re #11829
Browse files Browse the repository at this point in the history
  • Loading branch information
FedeMPouzols committed May 24, 2015
1 parent 4f51e30 commit 3aa798f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code/Mantid/Framework/DataHandling/src/LoadTOFRawNexus.cpp
Expand Up @@ -20,8 +20,8 @@ using namespace API;
using namespace DataObjects;

LoadTOFRawNexus::LoadTOFRawNexus(): m_numPixels(0), m_signalNo(0), pulseTimes(0),
m_numBins(0), m_spec_min(0), m_dataField(""), m_axisField(""), m_xUnits(""),
m_fileMutex(), m_assumeOldFile(false) {
m_numBins(0), m_spec_min(0), m_spec_max(0), m_dataField(""), m_axisField(""),
m_xUnits(""), m_fileMutex(), m_assumeOldFile(false) {
}

//-------------------------------------------------------------------------------------------------
Expand Down

0 comments on commit 3aa798f

Please sign in to comment.