| Index: src/utils.h
|
| diff --git a/src/utils.h b/src/utils.h
|
| index b2c2ff109847ee5bedec0d1848df61e01fcdc277..41334da0ee387c0c969bcc59144f87009d56a1b6 100644
|
| --- a/src/utils.h
|
| +++ b/src/utils.h
|
| @@ -1030,6 +1030,7 @@ class EnumSet {
|
| void Intersect(const EnumSet& set) { bits_ &= set.bits_; }
|
| T ToIntegral() const { return bits_; }
|
| bool operator==(const EnumSet& set) { return bits_ == set.bits_; }
|
| + bool operator!=(const EnumSet& set) { return bits_ != set.bits_; }
|
| EnumSet<E, T> operator|(const EnumSet& set) const {
|
| return EnumSet<E, T>(bits_ | set.bits_);
|
| }
|
|
|