Skip to content

Commit

Permalink
refs #9048 Coverity noise in IMDEventWorkspace
Browse files Browse the repository at this point in the history
https://scan6.coverity.com:8443/reports.htm#v29240/p10083/fileInstanceId=11024017&defectInstanceId=3877305&mergedDefectId=528995
initialized m_FileNeedsUpdating, though I do not think it is necessary/used any more.
  • Loading branch information
abuts committed Feb 20, 2014
1 parent 6c1b1be commit efb7a6a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Code/Mantid/Framework/API/src/IMDEventWorkspace.cpp
Expand Up @@ -22,7 +22,8 @@ namespace API
/** Copy constructor */
IMDEventWorkspace::IMDEventWorkspace(const IMDEventWorkspace & other)
: IMDWorkspace(other),
MultipleExperimentInfos(other)
MultipleExperimentInfos(other),
m_fileNeedsUpdating(other.m_fileNeedsUpdating)
{
}

Expand Down

0 comments on commit efb7a6a

Please sign in to comment.