Skip to content

Commit

Permalink
Merge pull request #7379 from Dr15Jones/removeUnnecessaryMutablesFrom…
Browse files Browse the repository at this point in the history
…HcalDcsValues

removed unnecessary mutable designations from HcalDcsValues
  • Loading branch information
ktf committed Jan 27, 2015
2 parents d7f31b4 + 72db94f commit 76d3f90
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions CondFormats/HcalObjects/interface/HcalDcsValues.h
Expand Up @@ -58,15 +58,15 @@ class HcalDcsValues {

private:
DcsSet mHBValues;
mutable bool mHBsorted;
bool mHBsorted;
DcsSet mHEValues;
mutable bool mHEsorted;
bool mHEsorted;
DcsSet mHO0Values;
mutable bool mHO0sorted;
bool mHO0sorted;
DcsSet mHO12Values;
mutable bool mHO12sorted;
bool mHO12sorted;
DcsSet mHFValues;
mutable bool mHFsorted;
bool mHFsorted;

COND_SERIALIZABLE;
};
Expand Down

0 comments on commit 76d3f90

Please sign in to comment.