Commit ff1ff1e5 authored by kaliko's avatar kaliko

Fixed typo in TagMask

parent 42b22187
...@@ -62,7 +62,7 @@ public: ...@@ -62,7 +62,7 @@ public:
} }
TagMask &operator&=(TagMask other) { TagMask &operator&=(TagMask other) {
value |= other.value; value &= other.value;
return *this; return *this;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment