Skip to content

Commit

Permalink
removed unnecessary mutable designations
Browse files Browse the repository at this point in the history
The static analyzer complained about thread-unsafe mutables in the
class. As the mutable was unnecessary, it was removed.
  • Loading branch information
Dr15Jones committed Jan 26, 2015
1 parent de497df commit 72db94f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions CondFormats/HcalObjects/interface/HcalDcsValues.h
Original file line number Diff line number Diff line change
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 72db94f

Please sign in to comment.