Skip to content

Commit

Permalink
fix coverity 1075403 (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 a698e22 commit b702ed2
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -115,16 +115,16 @@ class DLLExport LoadMask : public API::Algorithm {
std::vector<int> &rangeendvec);

/// Mask Workspace
DataObjects::MaskWorkspace_sptr mMaskWS;
DataObjects::MaskWorkspace_sptr m_MaskWS;
/// Instrument name
std::string m_instrumentPropValue;
/// XML document loaded
Poco::XML::Document *pDoc;
Poco::XML::Document *m_pDoc;
/// Root element of the parsed XML
Poco::XML::Element *pRootElem;
Poco::XML::Element *m_pRootElem;

/// Default setup. If true, not masking, but use the pixel
bool mDefaultToUse;
bool m_DefaultToUse;

std::vector<int32_t> mask_detid_single;
std::vector<int32_t> mask_specid_single;
Expand Down

0 comments on commit b702ed2

Please sign in to comment.