bool ClearAllF() -> void ClearAllF() (no reason it is a bool returning function)

This commit is contained in:
Paolo Cignoni 2009-05-26 22:35:57 +00:00
parent b3e9a9e105
commit b96d693960
1 changed files with 1 additions and 1 deletions

View File

@ -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()