Skip to content

Commit

Permalink
fix coverity 1237306 (constructor init), re #11328
Browse files Browse the repository at this point in the history
  • Loading branch information
FedeMPouzols committed Mar 12, 2015
1 parent bf540a1 commit eeb168c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Code/Mantid/Framework/DataHandling/src/LoadVulcanCalFile.cpp
Expand Up @@ -38,7 +38,11 @@ const size_t NUMBERRESERVEDPERMODULE = 1250;
//----------------------------------------------------------------------------------------------
/** Constructor
*/
LoadVulcanCalFile::LoadVulcanCalFile() : m_doAlignEventWS(false) {}
LoadVulcanCalFile::LoadVulcanCalFile() : m_instrument(),
m_groupingType(VULCAN_OFFSET_BANK), m_offsetFilename(""),
m_badPixFilename(""), m_tofOffsetsWS(), m_offsetsWS(), m_groupWS(),
m_maskWS(), m_doAlignEventWS(false), m_eventWS(), m_effLTheta() {
}

//----------------------------------------------------------------------------------------------
/** Destructor
Expand Down

0 comments on commit eeb168c

Please sign in to comment.