diff options
author | kaliko <kaliko@azylum.org> | 2019-02-02 15:14:31 +0100 |
---|---|---|
committer | kaliko <kaliko@azylum.org> | 2019-02-02 15:14:31 +0100 |
commit | ff1ff1e54a25ed80abdca9e7e63b36db150ec766 (patch) | |
tree | 6fe67211601b3ce19923bf203df606235c81db66 /src | |
parent | 42b22187c89a0032b4aff1722ef01f3aaedffcec (diff) |
Fixed typo in TagMask
Diffstat (limited to 'src')
-rw-r--r-- | src/tag/Mask.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tag/Mask.hxx b/src/tag/Mask.hxx index 625427174..5a03a5d95 100644 --- a/src/tag/Mask.hxx +++ b/src/tag/Mask.hxx @@ -62,7 +62,7 @@ public: } TagMask &operator&=(TagMask other) { - value |= other.value; + value &= other.value; return *this; } |