Fixed #2483 (SymbolDatabase compiler warning (VS2008/VS2010))

This commit is contained in:
Daniel Marjamäki 2011-01-19 07:33:38 +01:00
parent 0cacc7fe4d
commit 856a631f35
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ class Variable
*/
bool getFlag(int flag_) const
{
return bool(_flags & flag_);
return bool((_flags & flag_) != 0);
}
/**