1
0
Fork 0
forked from lthn/blockchain

fixed warning

This commit is contained in:
cryptozoidberg 2021-06-02 19:12:59 +03:00
parent 8f12632ca6
commit d31802a703
No known key found for this signature in database
GPG key ID: 22DEB97A54C6FDEC

View file

@ -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;
}
};