Skip to content

Commit

Permalink
Merge pull request #17152 from Dr15Jones/fixNotEqualOp
Browse files Browse the repository at this point in the history
Fix operator!= for pat::strbitset
  • Loading branch information
davidlange6 committed Jan 12, 2017
2 parents 7644e7d + 0a2e98a commit 6b39bbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PhysicsTools/SelectorUtils/interface/strbitset.h
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ class strbitset {

//! inequality operator to bool
bool operator!=( bool b ) const {
return ! ( operator!=(b));
return ! ( operator==(b));
}

//! returns number of bits set
Expand Down

0 comments on commit 6b39bbf

Please sign in to comment.