Skip to content

Commit

Permalink
fix coverity 1075417 (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 28c6a47 commit 5dafbb7
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -41,6 +41,10 @@ static const std::string WORKSPACE_OUT("OutputWorkspace");
// A reference to the logger is provided by the base class, it is called g_log.
// It is used to print out information, warning and error messages

LoadPreNexusMonitors::LoadPreNexusMonitors() : Mantid::API::Algorithm(),
nMonitors(0), instrument_loaded_correctly(false) {
}

void LoadPreNexusMonitors::init() {
// Filename for the runinfo file.
declareProperty(new FileProperty(RUNINFO_FILENAME, "", FileProperty::Load,
Expand Down

0 comments on commit 5dafbb7

Please sign in to comment.