1
0
Fork 0

(svn r24675) -Fix (r24632): MSVC performance warning.

release/1.3
michi_cc 2012-11-08 21:46:54 +00:00
parent a443375d44
commit 2c171f2f29
1 changed files with 1 additions and 1 deletions

View File

@ -1282,7 +1282,7 @@ uint SettingEntry::GetMaxHelpHeight(int maxw)
*/ */
bool SettingEntry::IsFiltered() const bool SettingEntry::IsFiltered() const
{ {
return this->flags & SEF_FILTERED; return (this->flags & SEF_FILTERED) != 0;
} }
/** /**