bool ClearAllF() -> void ClearAllF() (no reason it is a bool returning function)
This commit is contained in:
parent
b3e9a9e105
commit
b96d693960
|
@ -260,7 +260,7 @@ public:
|
|||
void SetF(int i) {this->Flags() |=(FAUX0<<i);}
|
||||
/// This funcion execute the inverse operation of SetS()
|
||||
void ClearF(int i) {this->Flags() &= (~(FAUX0<<i));}
|
||||
bool ClearAllF() { this->Flags() &= (~(FAUX0|FAUX1|FAUX2)); }
|
||||
void ClearAllF() { this->Flags() &= (~(FAUX0|FAUX1|FAUX2)); }
|
||||
|
||||
/// Return the first bit that is not still used
|
||||
static int &LastBitFlag()
|
||||
|
|
Loading…
Reference in New Issue