forked from lthn/blockchain
fixed warning
This commit is contained in:
parent
8f12632ca6
commit
d31802a703
1 changed files with 1 additions and 1 deletions
|
|
@ -115,7 +115,7 @@ public: \
|
|||
template<t_uint mask>
|
||||
inline static bool get_value_of_flag_by_mask(const t_uint& given_flags)
|
||||
{
|
||||
return given_flags&mask == 0 ? false : true;
|
||||
return (given_flags&mask) == 0 ? false : true;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue