FIXED:
* bitmask.MaskBit.ClearFlag now works properly. Whoooops, how long was
  that typo there?
This commit is contained in:
brent saner
2024-11-07 03:44:54 -05:00
parent e5191383a7
commit 3c543a05e7

View File

@@ -56,7 +56,7 @@ func (m *MaskBit) AddFlag(flag MaskBit) {
// ClearFlag removes MaskBit flag from m.
func (m *MaskBit) ClearFlag(flag MaskBit) {
*m &= flag
*m &^= flag
return
}