Fixed typo in TagMask

This commit is contained in:
kaliko 2019-02-02 15:14:31 +01:00
parent 42b22187c8
commit ff1ff1e54a
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ public:
} }
TagMask &operator&=(TagMask other) { TagMask &operator&=(TagMask other) {
value |= other.value; value &= other.value;
return *this; return *this;
} }