From e8f2f980488318fb0e37c1fe6bc1300e97327b6e Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 22 Feb 2019 12:44:36 +0100 Subject: [PATCH] tag/Mask: fix another typo, this time in `operator^=` Similar to commit ff1ff1e54a25ed80abdca9e7e63b36db150ec766 --- src/tag/Mask.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tag/Mask.hxx b/src/tag/Mask.hxx index 5a03a5d95..4b6126bc5 100644 --- a/src/tag/Mask.hxx +++ b/src/tag/Mask.hxx @@ -72,7 +72,7 @@ public: } TagMask &operator^=(TagMask other) { - value |= other.value; + value ^= other.value; return *this; }