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