Skip to content

Commit

Permalink
fix coverity 1075405 (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 27aaf76 commit 83073db
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Code/Mantid/Framework/DataHandling/src/LoadLLB.cpp
Expand Up @@ -23,8 +23,9 @@ DECLARE_NEXUS_FILELOADER_ALGORITHM(LoadLLB);
//----------------------------------------------------------------------------------------------
/** Constructor
*/
LoadLLB::LoadLLB() {
m_instrumentName = "";
LoadLLB::LoadLLB(): m_instrumentName(""), m_instrumentPath (""), m_localWorkspace(),
m_numberOfTubes(0), m_numberOfPixelsPerTube(0), m_numberOfChannels(0),
m_numberOfHistograms(0), m_wavelength(0.0), m_channelWidth(0.0), m_loader() {
m_supportedInstruments.push_back("MIBEMOL");
}

Expand Down

0 comments on commit 83073db

Please sign in to comment.