tag/Mask: fix another typo, this time in `operator^=`

Similar to commit ff1ff1e54a
This commit is contained in:
Max Kellermann 2019-02-22 12:44:36 +01:00
parent c672b60d07
commit e8f2f98048
1 changed files with 1 additions and 1 deletions

View File

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