Fixed typo in TagMask
This commit is contained in:
parent
42b22187c8
commit
ff1ff1e54a
|
@ -62,7 +62,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
TagMask &operator&=(TagMask other) {
|
TagMask &operator&=(TagMask other) {
|
||||||
value |= other.value;
|
value &= other.value;
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue