tag/Mask: add method Unset()
This commit is contained in:
parent
1b593462d3
commit
4208fe29b5
@ -87,6 +87,10 @@ public:
|
|||||||
void Set(TagType tag) {
|
void Set(TagType tag) {
|
||||||
*this |= tag;
|
*this |= tag;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Unset(TagType tag) {
|
||||||
|
*this |= ~TagMask(tag);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user