Skip to content

Commit

Permalink
fix coverity 1127169 (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 eb2a92b commit e919757
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Code/Mantid/Framework/DataHandling/src/LoadSINQFocus.cpp
Expand Up @@ -23,8 +23,9 @@ DECLARE_NEXUS_FILELOADER_ALGORITHM(LoadSINQFocus);
//----------------------------------------------------------------------------------------------
/** Constructor
*/
LoadSINQFocus::LoadSINQFocus() {
m_instrumentName = "";
LoadSINQFocus::LoadSINQFocus(): m_instrumentName(""), m_instrumentPath(),
m_localWorkspace(), m_numberOfTubes(0), m_numberOfPixelsPerTube(0),
m_numberOfChannels(0), m_numberOfHistograms(0), m_loader() {
m_supportedInstruments.push_back("FOCUS");
this->useAlgorithm("LoadSINQ");
this->deprecatedDate("2013-10-28");
Expand Down

0 comments on commit e919757

Please sign in to comment.